import { Settings2, Check, Info } from 'lucide-react'; const steps = [ { number: 1, title: 'Your Prompt', subtitle: '"a cat on windowsill"' }, { number: 2, title: 'Smart Enhancement', subtitle: 'Style + details added' }, { number: 3, title: 'AI Generation', subtitle: 'Gemini creates image' }, { number: 4, title: 'CDN Delivery', subtitle: 'Instant global URL' }, ]; const controls = [ { text: 'Style templates', detail: '— photorealistic, illustration, minimalist, and more' }, { text: 'Reference images', detail: '— @aliases maintain visual consistency' }, { text: 'Output specs', detail: '— aspect ratio, dimensions, format' }, ]; export function HowItWorksSection() { return (

Your prompt. Your control. Production-ready.

We handle the complexity so you can focus on building.

{steps.map((step) => (
{step.number}

{step.title}

{step.subtitle}

))}

What you control

{controls.map((control, i) => (
{control.text} {control.detail}
))}

Enhanced prompts are visible in API response. You always see what was generated.

); }