3 pages done
This commit is contained in:
@@ -105,6 +105,18 @@ const navigationData = {
|
||||
name: "Android App Development",
|
||||
href: "/services/android-app-development",
|
||||
},
|
||||
{
|
||||
name: "Android App Development India",
|
||||
href: "/services/android-app-development-india",
|
||||
},
|
||||
{
|
||||
name: "Android App Development UK",
|
||||
href: "/services/android-app-development-uk",
|
||||
},
|
||||
{
|
||||
name: "Android App Development USA",
|
||||
href: "/services/android-app-development-usa",
|
||||
},
|
||||
{
|
||||
name: "Cross-Platform App Development",
|
||||
href: "/services/cross-platform-app-development",
|
||||
|
||||
1424
pages/AndroidAppDevelopmentIndia.tsx
Normal file
1424
pages/AndroidAppDevelopmentIndia.tsx
Normal file
File diff suppressed because it is too large
Load Diff
1408
pages/AndroidAppDevelopmentUSA.tsx
Normal file
1408
pages/AndroidAppDevelopmentUSA.tsx
Normal file
File diff suppressed because it is too large
Load Diff
1424
pages/AndroidAppDevelopmentUk.tsx
Normal file
1424
pages/AndroidAppDevelopmentUk.tsx
Normal file
File diff suppressed because it is too large
Load Diff
512
src/Router.tsx
512
src/Router.tsx
@@ -19,6 +19,9 @@ import { AIIntegrationDigitalProducts } from "../pages/AIIntegrationDigitalProdu
|
||||
import { AIModelDeploymentMLOps } from "../pages/AIModelDeploymentMLOps";
|
||||
import { AIStrategyConsulting } from "../pages/AIStrategyConsulting";
|
||||
import { AndroidAppDevelopment } from "../pages/AndroidAppDevelopment";
|
||||
import { AndroidAppDevelopmentIndia } from "../pages/AndroidAppDevelopmentIndia";
|
||||
import { AndroidAppDevelopmentUk } from "../pages/AndroidAppDevelopmentUk";
|
||||
import { AndroidAppDevelopmentUSA } from "../pages/AndroidAppDevelopmentUSA";
|
||||
import { APIBackendDevelopment } from "../pages/APIBackendDevelopment";
|
||||
import { ClickablePrototypes } from "../pages/ClickablePrototypes";
|
||||
import { ComputerVisionApplications } from "../pages/ComputerVisionApplications";
|
||||
@@ -179,9 +182,7 @@ import { HireMobileAppDevelopersIndia } from "../pages/HireMobileAppDevelopersIn
|
||||
import { ArticleDetail } from "../pages/ArticleDetail";
|
||||
import { BrowserRouter as Router, Routes, Route } from "react-router-dom";
|
||||
|
||||
|
||||
export const AppRouter = () => (
|
||||
|
||||
<Routes>
|
||||
{/* Homepage */}
|
||||
<Route path="/" element={<Homepage />} />
|
||||
@@ -195,99 +196,297 @@ export const AppRouter = () => (
|
||||
<Route path="/web-cloud" element={<WebCloudServices />} />
|
||||
<Route path="/software-engineering" element={<SoftwareEngineering />} />
|
||||
<Route path="/design-experience" element={<DesignExperience />} />
|
||||
<Route path="/artificial-intelligence" element={<ArtificialIntelligenceServices />} />
|
||||
<Route
|
||||
path="/artificial-intelligence"
|
||||
element={<ArtificialIntelligenceServices />}
|
||||
/>
|
||||
<Route path="/machine-learning" element={<MachineLearning />} />
|
||||
|
||||
{/* SERVICES */}
|
||||
<Route path="/services/mobile-app-development" element={<MobileAppDevelopment />} />
|
||||
<Route path="/services/ios-app-development" element={<IOSAppDevelopment />} />
|
||||
<Route path="/services/android-app-development" element={<AndroidAppDevelopment />} />
|
||||
<Route path="/services/cross-platform-app-development" element={<CrossPlatformAppDevelopment />} />
|
||||
<Route path="/services/native-app-development" element={<NativeAppDevelopment />} />
|
||||
<Route
|
||||
path="/services/mobile-app-development"
|
||||
element={<MobileAppDevelopment />}
|
||||
/>
|
||||
<Route
|
||||
path="/services/ios-app-development"
|
||||
element={<IOSAppDevelopment />}
|
||||
/>
|
||||
<Route
|
||||
path="/services/android-app-development"
|
||||
element={<AndroidAppDevelopment />}
|
||||
/>
|
||||
<Route
|
||||
path="/services/android-app-development-india"
|
||||
element={<AndroidAppDevelopmentIndia />}
|
||||
/>
|
||||
<Route
|
||||
path="/services/android-app-development-uk"
|
||||
element={<AndroidAppDevelopmentUk />}
|
||||
/>
|
||||
<Route
|
||||
path="/services/android-app-development-usa"
|
||||
element={<AndroidAppDevelopmentUSA />}
|
||||
/>
|
||||
<Route
|
||||
path="/services/cross-platform-app-development"
|
||||
element={<CrossPlatformAppDevelopment />}
|
||||
/>
|
||||
<Route
|
||||
path="/services/native-app-development"
|
||||
element={<NativeAppDevelopment />}
|
||||
/>
|
||||
<Route path="/services/pwa-development" element={<PWADevelopment />} />
|
||||
<Route path="/services/wearable-device-development" element={<WearableDeviceDevelopment />} />
|
||||
<Route path="/services/custom-web-app-development" element={<CustomWebAppDevelopment />} />
|
||||
<Route path="/services/saas-product-engineering" element={<SaaSProductEngineering />} />
|
||||
<Route path="/services/ecommerce-platforms" element={<EcommercePlatforms />} />
|
||||
<Route path="/services/admin-panels-dashboards" element={<AdminPanelsDashboards />} />
|
||||
<Route path="/services/api-backend-development" element={<APIBackendDevelopment />} />
|
||||
<Route path="/services/enterprise-software-solutions" element={<EnterpriseSoftwareSolutions />} />
|
||||
<Route path="/services/system-architecture-devops" element={<SystemArchitectureDevOps />} />
|
||||
<Route path="/services/third-party-integrations" element={<ThirdPartyIntegrations />} />
|
||||
<Route path="/services/product-modernization" element={<ProductModernization />} />
|
||||
<Route
|
||||
path="/services/wearable-device-development"
|
||||
element={<WearableDeviceDevelopment />}
|
||||
/>
|
||||
<Route
|
||||
path="/services/custom-web-app-development"
|
||||
element={<CustomWebAppDevelopment />}
|
||||
/>
|
||||
<Route
|
||||
path="/services/saas-product-engineering"
|
||||
element={<SaaSProductEngineering />}
|
||||
/>
|
||||
<Route
|
||||
path="/services/ecommerce-platforms"
|
||||
element={<EcommercePlatforms />}
|
||||
/>
|
||||
<Route
|
||||
path="/services/admin-panels-dashboards"
|
||||
element={<AdminPanelsDashboards />}
|
||||
/>
|
||||
<Route
|
||||
path="/services/api-backend-development"
|
||||
element={<APIBackendDevelopment />}
|
||||
/>
|
||||
<Route
|
||||
path="/services/enterprise-software-solutions"
|
||||
element={<EnterpriseSoftwareSolutions />}
|
||||
/>
|
||||
<Route
|
||||
path="/services/system-architecture-devops"
|
||||
element={<SystemArchitectureDevOps />}
|
||||
/>
|
||||
<Route
|
||||
path="/services/third-party-integrations"
|
||||
element={<ThirdPartyIntegrations />}
|
||||
/>
|
||||
<Route
|
||||
path="/services/product-modernization"
|
||||
element={<ProductModernization />}
|
||||
/>
|
||||
<Route path="/services/ui-ux-design" element={<UIUXDesign />} />
|
||||
<Route path="/services/clickable-prototypes" element={<ClickablePrototypes />} />
|
||||
<Route path="/services/design-thinking-workshops" element={<DesignThinkingWorkshops />} />
|
||||
<Route path="/services/user-research-testing" element={<UserResearchTesting />} />
|
||||
<Route path="/services/ai-strategy-consulting" element={<AIStrategyConsulting />} />
|
||||
<Route path="/services/ai-automation-workflows" element={<AIAutomationWorkflows />} />
|
||||
<Route path="/services/ai-integration-digital-products" element={<AIIntegrationDigitalProducts />} />
|
||||
<Route path="/services/gen-ai-integration-digital-products" element={<GenAIIntegrationDigitalProducts />} />
|
||||
<Route path="/services/ai-chatbots-virtual-assistants" element={<AIChatbotsVirtualAssistants />} />
|
||||
<Route path="/services/ai-model-deployment-mlops" element={<AIModelDeploymentMLOps />} />
|
||||
<Route path="/services/custom-ml-model-development" element={<CustomMLModelDevelopment />} />
|
||||
<Route path="/services/predictive-analytics-forecasting" element={<PredictiveAnalyticsForecasting />} />
|
||||
<Route path="/services/computer-vision-applications" element={<ComputerVisionApplications />} />
|
||||
<Route
|
||||
path="/services/clickable-prototypes"
|
||||
element={<ClickablePrototypes />}
|
||||
/>
|
||||
<Route
|
||||
path="/services/design-thinking-workshops"
|
||||
element={<DesignThinkingWorkshops />}
|
||||
/>
|
||||
<Route
|
||||
path="/services/user-research-testing"
|
||||
element={<UserResearchTesting />}
|
||||
/>
|
||||
<Route
|
||||
path="/services/ai-strategy-consulting"
|
||||
element={<AIStrategyConsulting />}
|
||||
/>
|
||||
<Route
|
||||
path="/services/ai-automation-workflows"
|
||||
element={<AIAutomationWorkflows />}
|
||||
/>
|
||||
<Route
|
||||
path="/services/ai-integration-digital-products"
|
||||
element={<AIIntegrationDigitalProducts />}
|
||||
/>
|
||||
<Route
|
||||
path="/services/gen-ai-integration-digital-products"
|
||||
element={<GenAIIntegrationDigitalProducts />}
|
||||
/>
|
||||
<Route
|
||||
path="/services/ai-chatbots-virtual-assistants"
|
||||
element={<AIChatbotsVirtualAssistants />}
|
||||
/>
|
||||
<Route
|
||||
path="/services/ai-model-deployment-mlops"
|
||||
element={<AIModelDeploymentMLOps />}
|
||||
/>
|
||||
<Route
|
||||
path="/services/custom-ml-model-development"
|
||||
element={<CustomMLModelDevelopment />}
|
||||
/>
|
||||
<Route
|
||||
path="/services/predictive-analytics-forecasting"
|
||||
element={<PredictiveAnalyticsForecasting />}
|
||||
/>
|
||||
<Route
|
||||
path="/services/computer-vision-applications"
|
||||
element={<ComputerVisionApplications />}
|
||||
/>
|
||||
<Route path="/services/nlp-text-analytics" element={<NLPTextAnalytics />} />
|
||||
<Route path="/services/recommendation-engines" element={<RecommendationEngines />} />
|
||||
<Route
|
||||
path="/services/recommendation-engines"
|
||||
element={<RecommendationEngines />}
|
||||
/>
|
||||
|
||||
{/* SOLUTIONS */}
|
||||
<Route path="/solutions/digital-product-development" element={<DigitalProductDevelopment />} />
|
||||
<Route path="/solutions/mvp-startup-launch-packages" element={<MVPStartupLaunchPackages />} />
|
||||
<Route path="/solutions/legacy-system-rebuilds" element={<LegacySystemRebuilds />} />
|
||||
<Route path="/solutions/dedicated-offshore-odc" element={<DedicatedOffshoreODC />} />
|
||||
<Route path="/solutions/business-process-automation" element={<BusinessProcessAutomation />} />
|
||||
<Route path="/solutions/compliance-ready-systems" element={<ComplianceReadySystems />} />
|
||||
<Route
|
||||
path="/solutions/digital-product-development"
|
||||
element={<DigitalProductDevelopment />}
|
||||
/>
|
||||
<Route
|
||||
path="/solutions/mvp-startup-launch-packages"
|
||||
element={<MVPStartupLaunchPackages />}
|
||||
/>
|
||||
<Route
|
||||
path="/solutions/legacy-system-rebuilds"
|
||||
element={<LegacySystemRebuilds />}
|
||||
/>
|
||||
<Route
|
||||
path="/solutions/dedicated-offshore-odc"
|
||||
element={<DedicatedOffshoreODC />}
|
||||
/>
|
||||
<Route
|
||||
path="/solutions/business-process-automation"
|
||||
element={<BusinessProcessAutomation />}
|
||||
/>
|
||||
<Route
|
||||
path="/solutions/compliance-ready-systems"
|
||||
element={<ComplianceReadySystems />}
|
||||
/>
|
||||
|
||||
{/* Simplified solution routes */}
|
||||
<Route path="/digital-product-development" element={<DigitalProductDevelopment />} />
|
||||
<Route
|
||||
path="/digital-product-development"
|
||||
element={<DigitalProductDevelopment />}
|
||||
/>
|
||||
<Route path="/mvp-startup-launch" element={<MVPStartupLaunchPackages />} />
|
||||
<Route path="/legacy-system-rebuilds" element={<LegacySystemRebuilds />} />
|
||||
<Route path="/dedicated-development-centers" element={<DedicatedOffshoreODC />} />
|
||||
<Route path="/business-process-automation" element={<BusinessProcessAutomation />} />
|
||||
<Route path="/compliance-ready-systems" element={<ComplianceReadySystems />} />
|
||||
<Route
|
||||
path="/dedicated-development-centers"
|
||||
element={<DedicatedOffshoreODC />}
|
||||
/>
|
||||
<Route
|
||||
path="/business-process-automation"
|
||||
element={<BusinessProcessAutomation />}
|
||||
/>
|
||||
<Route
|
||||
path="/compliance-ready-systems"
|
||||
element={<ComplianceReadySystems />}
|
||||
/>
|
||||
|
||||
{/* INDUSTRIES - Financial Services */}
|
||||
<Route path="/industries/fintech-banking-apps" element={<FinTechBankingApps />} />
|
||||
<Route path="/industries/financial-services/wealthtech-platforms" element={<WealthTechPlatforms />} />
|
||||
<Route path="/industries/financial-services/real-estate-tech" element={<RealEstateTech />} />
|
||||
<Route
|
||||
path="/industries/fintech-banking-apps"
|
||||
element={<FinTechBankingApps />}
|
||||
/>
|
||||
<Route
|
||||
path="/industries/financial-services/wealthtech-platforms"
|
||||
element={<WealthTechPlatforms />}
|
||||
/>
|
||||
<Route
|
||||
path="/industries/financial-services/real-estate-tech"
|
||||
element={<RealEstateTech />}
|
||||
/>
|
||||
|
||||
{/* INDUSTRIES - Healthcare & Wellness */}
|
||||
<Route path="/industries/healthcare/healthtech-applications" element={<HealthTechApplications />} />
|
||||
<Route path="/industries/healthcare/medical-compliance-solutions" element={<MedicalComplianceSolutions />} />
|
||||
<Route path="/industries/healthcare/fitness-wellness-platforms" element={<FitnessWellnessPlatforms />} />
|
||||
<Route
|
||||
path="/industries/healthcare/healthtech-applications"
|
||||
element={<HealthTechApplications />}
|
||||
/>
|
||||
<Route
|
||||
path="/industries/healthcare/medical-compliance-solutions"
|
||||
element={<MedicalComplianceSolutions />}
|
||||
/>
|
||||
<Route
|
||||
path="/industries/healthcare/fitness-wellness-platforms"
|
||||
element={<FitnessWellnessPlatforms />}
|
||||
/>
|
||||
|
||||
{/* INDUSTRIES - Learning & Education */}
|
||||
<Route path="/industries/education/edtech-platforms" element={<EdTechPlatforms />} />
|
||||
<Route path="/industries/education/virtual-classrooms-lms" element={<VirtualClassroomsLMS />} />
|
||||
<Route path="/industries/education/microlearning-apps" element={<MicrolearningApps />} />
|
||||
<Route
|
||||
path="/industries/education/edtech-platforms"
|
||||
element={<EdTechPlatforms />}
|
||||
/>
|
||||
<Route
|
||||
path="/industries/education/virtual-classrooms-lms"
|
||||
element={<VirtualClassroomsLMS />}
|
||||
/>
|
||||
<Route
|
||||
path="/industries/education/microlearning-apps"
|
||||
element={<MicrolearningApps />}
|
||||
/>
|
||||
|
||||
{/* INDUSTRIES - Commerce & Consumer */}
|
||||
<Route path="/industries/commerce/ecommerce-marketplaces" element={<EcommerceMarketplaces />} />
|
||||
<Route path="/industries/commerce/food-ordering-delivery" element={<FoodOrderingDelivery />} />
|
||||
<Route path="/industries/commerce/travel-booking-systems" element={<TravelBookingSystems />} />
|
||||
<Route path="/industries/commerce/event-ticketing-solutions" element={<EventTicketingSolutions />} />
|
||||
<Route
|
||||
path="/industries/commerce/ecommerce-marketplaces"
|
||||
element={<EcommerceMarketplaces />}
|
||||
/>
|
||||
<Route
|
||||
path="/industries/commerce/food-ordering-delivery"
|
||||
element={<FoodOrderingDelivery />}
|
||||
/>
|
||||
<Route
|
||||
path="/industries/commerce/travel-booking-systems"
|
||||
element={<TravelBookingSystems />}
|
||||
/>
|
||||
<Route
|
||||
path="/industries/commerce/event-ticketing-solutions"
|
||||
element={<EventTicketingSolutions />}
|
||||
/>
|
||||
|
||||
{/* INDUSTRIES - Media & Community */}
|
||||
<Route path="/industries/media/ott-streaming-apps" element={<OTTStreamingApps />} />
|
||||
<Route path="/industries/media/social-platforms-networks" element={<SocialPlatformsNetworks />} />
|
||||
<Route path="/industries/media/sports-fan-engagement" element={<SportsFanEngagement />} />
|
||||
<Route
|
||||
path="/industries/media/ott-streaming-apps"
|
||||
element={<OTTStreamingApps />}
|
||||
/>
|
||||
<Route
|
||||
path="/industries/media/social-platforms-networks"
|
||||
element={<SocialPlatformsNetworks />}
|
||||
/>
|
||||
<Route
|
||||
path="/industries/media/sports-fan-engagement"
|
||||
element={<SportsFanEngagement />}
|
||||
/>
|
||||
|
||||
{/* INDUSTRIES - Mobility & Logistics */}
|
||||
<Route path="/industries/mobility/transportation-apps" element={<TransportationApps />} />
|
||||
<Route path="/industries/mobility/on-demand-services" element={<OnDemandServices />} />
|
||||
<Route path="/industries/mobility/supply-chain-fleet-management" element={<SupplyChainFleetManagement />} />
|
||||
<Route
|
||||
path="/industries/mobility/transportation-apps"
|
||||
element={<TransportationApps />}
|
||||
/>
|
||||
<Route
|
||||
path="/industries/mobility/on-demand-services"
|
||||
element={<OnDemandServices />}
|
||||
/>
|
||||
<Route
|
||||
path="/industries/mobility/supply-chain-fleet-management"
|
||||
element={<SupplyChainFleetManagement />}
|
||||
/>
|
||||
|
||||
{/* INDUSTRIES - Industrial & Emerging Tech */}
|
||||
<Route path="/industries/industrial/manufacturing-automation" element={<ManufacturingAutomation />} />
|
||||
<Route path="/industries/industrial/agritech-platforms" element={<AgriTechPlatforms />} />
|
||||
<Route path="/industries/industrial/oil-gas-monitoring-systems" element={<OilGasMonitoringSystems />} />
|
||||
<Route
|
||||
path="/industries/industrial/manufacturing-automation"
|
||||
element={<ManufacturingAutomation />}
|
||||
/>
|
||||
<Route
|
||||
path="/industries/industrial/agritech-platforms"
|
||||
element={<AgriTechPlatforms />}
|
||||
/>
|
||||
<Route
|
||||
path="/industries/industrial/oil-gas-monitoring-systems"
|
||||
element={<OilGasMonitoringSystems />}
|
||||
/>
|
||||
|
||||
{/* COMPANY PAGES */}
|
||||
<Route path="/company/about-wdi" element={<AboutWDI />} />
|
||||
<Route path="/company/our-history" element={<OurHistory />} />
|
||||
<Route path="/company/leadership-team" element={<LeadershipTeam />} />
|
||||
<Route path="/company/awards-certifications" element={<AwardsCertifications />} />
|
||||
<Route
|
||||
path="/company/awards-certifications"
|
||||
element={<AwardsCertifications />}
|
||||
/>
|
||||
<Route path="/company/careers" element={<Careers />} />
|
||||
<Route path="/company/culture-values" element={<CultureValues />} />
|
||||
<Route path="/company/press-media" element={<PressMedia />} />
|
||||
@@ -299,50 +498,133 @@ export const AppRouter = () => (
|
||||
|
||||
{/* HIRE TALENT PAGES */}
|
||||
<Route path="/hire-talent" element={<HireTalent />} />
|
||||
<Route path="/hire-talent/mobile-app-developers" element={<HireMobileAppDevelopers />} />
|
||||
<Route path="/hire-talent/full-stack-developers" element={<HireFullStackDevelopers />} />
|
||||
<Route path="/hire-talent/frontend-developers" element={<HireFrontendDevelopers />} />
|
||||
<Route path="/hire-talent/backend-developers" element={<HireBackendDevelopers />} />
|
||||
<Route path="/hire-talent/ui-ux-designers" element={<HireUIUXDesigners />} />
|
||||
<Route
|
||||
path="/hire-talent/mobile-app-developers"
|
||||
element={<HireMobileAppDevelopers />}
|
||||
/>
|
||||
<Route
|
||||
path="/hire-talent/full-stack-developers"
|
||||
element={<HireFullStackDevelopers />}
|
||||
/>
|
||||
<Route
|
||||
path="/hire-talent/frontend-developers"
|
||||
element={<HireFrontendDevelopers />}
|
||||
/>
|
||||
<Route
|
||||
path="/hire-talent/backend-developers"
|
||||
element={<HireBackendDevelopers />}
|
||||
/>
|
||||
<Route
|
||||
path="/hire-talent/ui-ux-designers"
|
||||
element={<HireUIUXDesigners />}
|
||||
/>
|
||||
<Route path="/hire-talent/qa-engineers" element={<HireQAEngineers />} />
|
||||
<Route path="/dedicated-development-teams" element={<DedicatedDevelopmentTeams />} />
|
||||
<Route
|
||||
path="/dedicated-development-teams"
|
||||
element={<DedicatedDevelopmentTeams />}
|
||||
/>
|
||||
<Route path="/engagement-models" element={<EngagementModels />} />
|
||||
<Route path="/team-augmentation-services" element={<TeamAugmentationServices />} />
|
||||
<Route path="/hire-talent/mobile-app-developers-india" element={<HireMobileAppDevelopersIndia />} />
|
||||
|
||||
<Route
|
||||
path="/team-augmentation-services"
|
||||
element={<TeamAugmentationServices />}
|
||||
/>
|
||||
<Route
|
||||
path="/hire-talent/mobile-app-developers-india"
|
||||
element={<HireMobileAppDevelopersIndia />}
|
||||
/>
|
||||
|
||||
{/* New hire pages */}
|
||||
<Route path="/hire-talent/ios-app-developers" element={<HireiOSAppDevelopers />} />
|
||||
<Route path="/hire-talent/android-app-developers" element={<HireAndroidAppDevelopers />} />
|
||||
<Route path="/hire-talent/cross-platform-developers" element={<HireCrossPlatformDevelopers />} />
|
||||
<Route path="/hire-talent/native-app-developers" element={<HireNativeAppDevelopers />} />
|
||||
<Route
|
||||
path="/hire-talent/ios-app-developers"
|
||||
element={<HireiOSAppDevelopers />}
|
||||
/>
|
||||
<Route
|
||||
path="/hire-talent/android-app-developers"
|
||||
element={<HireAndroidAppDevelopers />}
|
||||
/>
|
||||
<Route
|
||||
path="/hire-talent/cross-platform-developers"
|
||||
element={<HireCrossPlatformDevelopers />}
|
||||
/>
|
||||
<Route
|
||||
path="/hire-talent/native-app-developers"
|
||||
element={<HireNativeAppDevelopers />}
|
||||
/>
|
||||
<Route path="/hire-talent/pwa-developers" element={<HirePWADevelopers />} />
|
||||
<Route path="/hire-talent/wearable-app-developers" element={<HireWearableAppDevelopers />} />
|
||||
<Route path="/hire-talent/custom-web-app-developers" element={<HireCustomWebAppDevelopers />} />
|
||||
<Route path="/hire-talent/saas-product-developers" element={<HireSaaSProductDevelopers />} />
|
||||
<Route path="/hire-talent/ecommerce-platform-developers" element={<HireEcommercePlatformDevelopers />} />
|
||||
<Route path="/hire-talent/admin-panel-developers" element={<HireAdminPanelDevelopers />} />
|
||||
<Route path="/hire-talent/api-backend-developers" element={<HireAPIBackendDevelopers />} />
|
||||
<Route path="/hire-talent/enterprise-software-developers" element={<HireEnterpriseSoftwareDevelopers />} />
|
||||
<Route path="/hire-talent/system-architecture-developers" element={<HireSystemArchitectureDevOpsDevelopers />} />
|
||||
<Route path="/hire-talent/third-party-integration-developers" element={<HireThirdPartyIntegrationsDevelopers />} />
|
||||
<Route path="/hire-talent/product-modernization-developers" element={<HireProductModernizationDevelopers />} />
|
||||
<Route path="/hire-talent/clickable-prototypes-developers" element={<HireClickablePrototypesDevelopers />} />
|
||||
<Route path="/hire-talent/design-thinking-workshops-developers" element={<HireDesignThinkingWorkshopsDevelopers />} />
|
||||
<Route path="/hire-talent/user-research-testing-developers" element={<HireUserResearchTestingDevelopers />} />
|
||||
<Route
|
||||
path="/hire-talent/wearable-app-developers"
|
||||
element={<HireWearableAppDevelopers />}
|
||||
/>
|
||||
<Route
|
||||
path="/hire-talent/custom-web-app-developers"
|
||||
element={<HireCustomWebAppDevelopers />}
|
||||
/>
|
||||
<Route
|
||||
path="/hire-talent/saas-product-developers"
|
||||
element={<HireSaaSProductDevelopers />}
|
||||
/>
|
||||
<Route
|
||||
path="/hire-talent/ecommerce-platform-developers"
|
||||
element={<HireEcommercePlatformDevelopers />}
|
||||
/>
|
||||
<Route
|
||||
path="/hire-talent/admin-panel-developers"
|
||||
element={<HireAdminPanelDevelopers />}
|
||||
/>
|
||||
<Route
|
||||
path="/hire-talent/api-backend-developers"
|
||||
element={<HireAPIBackendDevelopers />}
|
||||
/>
|
||||
<Route
|
||||
path="/hire-talent/enterprise-software-developers"
|
||||
element={<HireEnterpriseSoftwareDevelopers />}
|
||||
/>
|
||||
<Route
|
||||
path="/hire-talent/system-architecture-developers"
|
||||
element={<HireSystemArchitectureDevOpsDevelopers />}
|
||||
/>
|
||||
<Route
|
||||
path="/hire-talent/third-party-integration-developers"
|
||||
element={<HireThirdPartyIntegrationsDevelopers />}
|
||||
/>
|
||||
<Route
|
||||
path="/hire-talent/product-modernization-developers"
|
||||
element={<HireProductModernizationDevelopers />}
|
||||
/>
|
||||
<Route
|
||||
path="/hire-talent/clickable-prototypes-developers"
|
||||
element={<HireClickablePrototypesDevelopers />}
|
||||
/>
|
||||
<Route
|
||||
path="/hire-talent/design-thinking-workshops-developers"
|
||||
element={<HireDesignThinkingWorkshopsDevelopers />}
|
||||
/>
|
||||
<Route
|
||||
path="/hire-talent/user-research-testing-developers"
|
||||
element={<HireUserResearchTestingDevelopers />}
|
||||
/>
|
||||
|
||||
{/* RESOURCES PAGES */}
|
||||
<Route path="/resources/blog" element={<Blog />} />
|
||||
<Route path="/case-studies" element={<CaseStudies />} />
|
||||
<Route path="/resources/client-testimonials" element={<ClientTestimonials />} />
|
||||
<Route path="/resources/whitepapers-insights" element={<WhitepapersInsights />} />
|
||||
<Route
|
||||
path="/resources/client-testimonials"
|
||||
element={<ClientTestimonials />}
|
||||
/>
|
||||
<Route
|
||||
path="/resources/whitepapers-insights"
|
||||
element={<WhitepapersInsights />}
|
||||
/>
|
||||
<Route path="/resources/faqs" element={<FAQs />} />
|
||||
|
||||
{/* CONTACT PAGES */}
|
||||
<Route path="/contact-us" element={<Contact />} />
|
||||
<Route path="/contact-us-now" element={<Contact />} />
|
||||
<Route path="/contact/request-a-proposal" element={<RequestProposal />} />
|
||||
<Route path="/contact/schedule-a-discovery-call" element={<ScheduleDiscoveryCall />} />
|
||||
<Route
|
||||
path="/contact/schedule-a-discovery-call"
|
||||
element={<ScheduleDiscoveryCall />}
|
||||
/>
|
||||
<Route path="/contact/office-locations" element={<OfficeLocations />} />
|
||||
<Route path="/contact/client-support" element={<ClientSupport />} />
|
||||
<Route path="/contact/send-your-cv" element={<SendYourCV />} />
|
||||
@@ -357,7 +639,10 @@ export const AppRouter = () => (
|
||||
{/* <Route path="/projects/seezun" element={<SeezunProject />} /> */}
|
||||
<Route path="/projects/woka" element={<WokaProject />} />
|
||||
<Route path="/projects/tanami" element={<TanamiProject />} />
|
||||
<Route path="/projects/traderscircuit" element={<TradersCircuitProject />} />
|
||||
<Route
|
||||
path="/projects/traderscircuit"
|
||||
element={<TradersCircuitProject />}
|
||||
/>
|
||||
<Route path="/projects/goodtimes" element={<GoodTimesProject />} />
|
||||
<Route path="/projects/prosperty" element={<ProspertyProject />} />
|
||||
<Route path="/projects/ranoutof" element={<RanOutOfProject />} />
|
||||
@@ -367,15 +652,36 @@ export const AppRouter = () => (
|
||||
<Route path="/projects/simpletend" element={<SimpliTendProject />} />
|
||||
|
||||
{/* ARTICLE PAGES */}
|
||||
<Route path="/articles/future-of-ai-healthcare" element={<FutureOfAIHealthcare />} />
|
||||
<Route path="/articles/compliance-ready-systems-fintech" element={<ComplianceReadyFintech />} />
|
||||
<Route path="/articles/legacy-system-scaling" element={<LegacySystemScaling />} />
|
||||
<Route path="/articles/automation-reshaping-business" element={<AutomationReshapingBusiness />} />
|
||||
<Route
|
||||
path="/articles/future-of-ai-healthcare"
|
||||
element={<FutureOfAIHealthcare />}
|
||||
/>
|
||||
<Route
|
||||
path="/articles/compliance-ready-systems-fintech"
|
||||
element={<ComplianceReadyFintech />}
|
||||
/>
|
||||
<Route
|
||||
path="/articles/legacy-system-scaling"
|
||||
element={<LegacySystemScaling />}
|
||||
/>
|
||||
<Route
|
||||
path="/articles/automation-reshaping-business"
|
||||
element={<AutomationReshapingBusiness />}
|
||||
/>
|
||||
|
||||
{/* INSIGHT PAGES */}
|
||||
<Route path="/insights/ux-review-presentations" element={<UXReviewPresentations />} />
|
||||
<Route path="/insights/migrating-to-linear-101" element={<MigratingToLinear101 />} />
|
||||
<Route path="/insights/building-your-api-stack" element={<BuildingYourAPIStack />} />
|
||||
<Route
|
||||
path="/insights/ux-review-presentations"
|
||||
element={<UXReviewPresentations />}
|
||||
/>
|
||||
<Route
|
||||
path="/insights/migrating-to-linear-101"
|
||||
element={<MigratingToLinear101 />}
|
||||
/>
|
||||
<Route
|
||||
path="/insights/building-your-api-stack"
|
||||
element={<BuildingYourAPIStack />}
|
||||
/>
|
||||
|
||||
{/* PLACEHOLDER */}
|
||||
{/* <Route path="/comming-soon" element={<CaseStudyComingSoon projectTitle="Coming Soon Project" />} /> */}
|
||||
@@ -388,5 +694,5 @@ export const dynamicRoutes = {
|
||||
"ux-review-presentations": UXReviewPresentations,
|
||||
"migrating-to-linear-101": MigratingToLinear101,
|
||||
"building-your-api-stack": BuildingYourAPIStack,
|
||||
}
|
||||
};
|
||||
},
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user