import { CarouselTestimonials } from "@/components/CarouselTestimonials"; import { CaseStudyHighlight } from "@/components/CaseStudyHighlight"; import { Footer } from "@/components/Footer"; import { HorizontalTagScroller } from "@/components/HorizontalTagScroller"; import { InlineCTA } from "@/components/InlineCTA"; import { ProcessSection } from "@/components/ProcessSection"; import { ResourceCards } from "@/components/ResourceCards"; import { SplitCallToAction } from "@/components/SplitCallToAction"; import { WhyChooseWDI } from "@/components/WhyChooseWDI"; import { ChevronRight } from "lucide-react"; import { motion } from "framer-motion"; import { Helmet } from "react-helmet-async"; import { Navigation } from "@/components/Navigation"; import { HeroSection } from "@/components/HeroSection"; import { ClientLogos } from "@/components/ClientLogos"; import { useNavigate } from "react-router-dom"; const services = [ { title: "Mobile App Development", icon: ( ), description: "Native & cross-platform apps with pixel-perfect UIs and seamless user experiences.", link: "/services/mobile-app-development" }, { title: "Web Platforms & SaaS", icon: ( ), description: "Scalable, secure, and SEO-optimized web applications built for performance.", link: "/web-cloud" }, { title: "AI & ML Solutions", icon: ( ), description: "Intelligent features powered by cutting-edge algorithms and machine learning.", link: "/artificial-intelligence" }, { title: "DevOps & Cloud", icon: ( ), description: "CI/CD pipelines and managed cloud infrastructure for seamless deployment.", link: "/services/system-architecture-devops" }, { title: "Product Design & UX", icon: ( ), description: "Human-centered UX with delightful micro-interactions and intuitive interfaces.", link: "/design-experience" }, { title: "Security & Compliance", icon: ( ), description: "Pen-testing, auditing, and regulatory alignment for enterprise-grade security.", link: "/solutions/compliance-ready-systems" } ]; export const Homepage = () => { const navigate = useNavigate(); return (
{/* Page Title and Meta Description */} Mobile App Development Services | WDI - iOS & Android App Development {/* Canonical Link */} {/* Open Graph Tags (for Facebook, LinkedIn) */} {/* Twitter Card Tags */} {/* Social Profiles (using JSON-LD Schema) */} {/* */} {/* Hero Section - Dark background */}
{/* Client Logos - Dark background */}
{/* Services Grid - Dark background */} {/*
*/}

What We Do

End-to-end solutions for every stage of your product lifecycle.

{services.map((service, index) => { const IconComponent = service.icon; return ( navigate(service.link)} >
{/* */} {service.icon}

{service.title}

{service.description}

Explore Services
); })}
{/* Why Choose WDI - Dark background */}
{/* Industry Solutions - Dark background */}
{/* Case Studies - Dark background */}
{/* Inline CTA - Dark background */}
{/* Process Steps - Dark background */}
{/* Testimonials - Dark background */}
{/* Resources - Dark background */}
{/* Final CTA - Dark background */}
{/* Footer - Dark background */}
{/*
); };