const steps = [ { step:'01', title:'Discover', desc:'Browse curated vendors across every category. Filter by district, budget, and style.' }, { step:'02', title:'Plan', desc:'Use your planner dashboard to track tasks, manage your budget, and organize your timeline.' }, { step:'03', title:'Contract', desc:'Review, negotiate, and digitally sign contracts — with a full audit trail for peace of mind.' }, { step:'04', title:'Celebrate', desc:'Everything is organized, confirmed, and ready. Now enjoy your perfect day.' }, ] export default function HowItWorks() { return (

Simple steps

How it works

{steps.map((s,i) => (
{i < steps.length - 1 &&
}
{s.step}

{s.title}

{s.desc}

))}
) }