import { MessageSquare, Cpu, Rocket } from 'lucide-react'; const steps = [ { icon: MessageSquare, step: '01', title: 'Describe Your Idea', description: 'Tell Lovable what you want to build in plain English. Be as detailed or brief as you like — our AI understands context and intent.', color: 'from-brand-400 to-brand-600', }, { icon: Cpu, step: '02', title: 'AI Generates & Iterates', description: 'Watch as Lovable generates a full-stack application in real-time. Edit with natural language, refine with clicks, iterate instantly.', color: 'from-pink-400 to-rose-600', }, { icon: Rocket, step: '03', title: 'Ship to Production', description: 'One click deploys your app to the cloud. Custom domains, SSL, and CDN included. Your app is live in seconds.', color: 'from-orange-400 to-red-500', }, ]; export default function HowItWorks() { return (
How it works

Three steps to your dream app

No setup, no configuration, no boilerplate. Just describe and deploy.

{/* Connecting line */}
{steps.map((step, index) => (
{step.step}

{step.title}

{step.description}

))}
); }