/* global React */ const STEPS = [ { n:'01', title:'Pick a format', body:'Poker decks, Privacy Breach, Guess Who?, Top Trumps, or a blank slate.', pip:'♥', color:'var(--card-red)' }, { n:'02', title:'Build it in 5 minutes', body:'Drag in photos. Type the names. Add the inside jokes. Live preview as you go.', pip:'♦', color:'var(--marigold)' }, { n:'03', title:'Posted in days', body:"We print on 300gsm premium gaming card stock and send via Australia Post. Most decks arrive in 2–5 working days.", pip:'♣', color:'var(--mint-deep)' }, ]; function HowItWorks() { return (
How easy is it?

Incredibly.

{STEPS.map(s=>(
{s.n}
{s.pip}

{s.title}

{s.body}

))}
Start yours →
); } window.HowItWorks = HowItWorks;