/** * Landing Section: How It Works * * Numbered 3-step horizontal flow. */ import { motion } from 'framer-motion' import { StaggerContainer, staggerChild, SectionHeading } from '../primitives' const STEPS = [ { number: '01', title: 'Sign Up', description: 'Create your account in seconds. No credit card required, no complicated setup.', }, { number: '02', title: 'Set Up', description: 'Configure your workspace and invite your team. Everything is guided step by step.', }, { number: '03', title: 'Go', description: 'Start using the app right away. Everything you need is ready from day one.', }, ] export default function HowItWorksSection() { return (
{STEPS.map(step => (
{step.number}

{step.title}

{step.description}

))}
) }