import { motion } from "framer-motion"; import { FileText, Palette, Code, Rocket } from "lucide-react"; import { GridPattern } from "./GridPattern"; const steps = [ { title: "Define Scope", description: "We analyze your requirements and create a detailed project roadmap with clear timelines.", icon: FileText, color: "from-blue-500 to-cyan-500" }, { title: "Design UI/UX", description: "Our designers create intuitive, user-centered interfaces that align with your brand.", icon: Palette, color: "from-purple-500 to-pink-500" }, { title: "Develop with Agile Sprints", description: "We build your product using agile methodology with regular updates and feedback loops.", icon: Code, color: "from-green-500 to-emerald-500" }, { title: "Test, Launch & Scale", description: "Comprehensive testing, smooth deployment, and ongoing support for continuous growth.", icon: Rocket, color: "from-[#E5195E] to-orange-500" } ]; const StepCard = ({ step, index }: { step: typeof steps[0]; index: number }) => { const Icon = step.icon; return ( {/* Connection Line */} {index < steps.length - 1 && ( )} {index + 1} {step.title} {step.description} ); }; export const StepsIllustrated = () => { return ( How We Turn Your Idea Into a Scalable Product Our proven 4-step process ensures your project is delivered on time, on budget, and exceeds expectations. {steps.map((step, index) => ( ))} ); };
{step.description}
Our proven 4-step process ensures your project is delivered on time, on budget, and exceeds expectations.