This commit is contained in:
YasinShaikh123
2026-04-09 11:42:36 +05:30
5 changed files with 4677 additions and 103 deletions

View File

@@ -105,6 +105,18 @@ const navigationData = {
name: "Android App Development", name: "Android App Development",
href: "/services/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", name: "Cross-Platform App Development",
href: "/services/cross-platform-app-development", href: "/services/cross-platform-app-development",

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

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