import { UserPlus, Link2, Sparkles, PartyPopper, ArrowDown } from 'lucide-react' const steps = [ { icon: UserPlus, step: "01", title: "Create account", description: "Sign up for free in less than 60 seconds. No credit card required.", }, { icon: Link2, step: "02", title: "Connect email", description: "Connect Gmail or Outlook with one click. Secure OAuth authentication.", }, { icon: Sparkles, step: "03", title: "AI analyzes", description: "Our AI learns your email patterns and creates personalized sorting rules.", }, { icon: PartyPopper, step: "04", title: "Enjoy Inbox Zero", description: "Sit back and enjoy a clean inbox – automatically.", }, ] export function HowItWorks() { return (
{/* Section header */}

4 steps to a{' '} clean inbox

Get started in minutes – no technical knowledge required.

{/* Steps */}
{/* Connection line */}
{steps.map((item, index) => ( ))}
{/* CTA */}

Ready to get started?

Try it free now →
) } interface StepCardProps { icon: React.ElementType step: string title: string description: string } function StepCard({ icon: Icon, step, title, description }: StepCardProps) { return (
{/* Card */}
{/* Step number */}
{step}
{/* Icon */}
{/* Content */}

{title}

{description}

) }