import { UserPlus, Play, Image, Search } from 'lucide-react'; const HowItWorks = () => { const steps = [ { num: "01", title: "Sign Up", desc: "Create your free account in seconds. Add your dog's profile and you're ready to go.", icon: UserPlus }, { num: "02", title: "Start Recording", desc: "Hit record when you head out. The app tracks your route, distance, and time automatically.", icon: Play }, { num: "03", title: "Share & Tag", desc: "Add photos, labels, and notes. Share with the community or keep it for yourself.", icon: Image }, { num: "04", title: "Discover & Connect", desc: "Explore routes shared by others. Find dog-friendly spots and make walking buddies.", icon: Search } ]; return (

Start Your Adventure in Minutes

Getting started with TailTrails is as easy as going for a walk.

{steps.map((step, i) => (
{step.num}

{step.title}

{step.desc}

{i < steps.length - 1 && (
)}
))}
); }; export default HowItWorks;