import { SectionHeading } from "@/components/shared/SectionHeading"; import { ArrowLeft, ArrowRight } from "lucide-react"; export function HowItWorksSection() { const steps = [ { number: "01", title: "Discover & Diagnose", description: "We assess your systems, processes, and goals to identify where technology can deliver the highest business value.", }, { number: "02", title: "Design", description: "We architect a focused solution that fits your existing landscape, balancing cost, scale, and time to value.", }, { number: "03", title: "Build & Integrate", description: "Our engineering teams build, integrate, and test — connecting new capabilities to the systems you already run.", }, { number: "04", title: "Deploy & Optimize", description: "We deploy with confidence and keep improving through monitoring, support, and continuous optimization.", }, ]; return (
{steps.map((step, index) => (
{step.number} {step.title}

{step.description}

))}
); }