// Process.jsx — How we work (4 steps on dark) const STEPS = [ { n: "01", title: "We sit with you.", desc: "A morning in your shop, van, or studio. We learn the real workflow, not the one on the website." }, { n: "02", title: "A plan, in plain English.", desc: "No decks full of jargon. A few pages, what we'll build, what it costs, what it saves. Yours to keep." }, { n: "03", title: "We build in the open.", desc: "Weekly Loom updates, a shared Linear board, real WhatsApp replies. You always know where we're at." }, { n: "04", title: "You own it.", desc: "Handover with docs, training, and a month of free support. Then it's yours — no lock-in, no mystery vendor." }, ]; function Process() { return (
02  /  How we work

A quiet, unhurried way of building.

Four steps. No surprises in the middle, no ambush invoices at the end. The same rhythm whether we're writing your website copy or plumbing GPT into your booking system.

{STEPS.map((s, i) => (
Step {s.n}

{s.title}

{s.desc}

))}
); } window.Process = Process;