export default function Process() { const steps = [ { t: "Free check", d: "We assess scope, risks and impact in 20–30 minutes." }, { t: "Sprint or managed", d: "Pick a fixed sprint or managed plan with clear outcomes." }, { t: "Proof", d: "We deliver and prove it: reports, tests, and notes you keep." }, ]; return (

How we work

{steps.map((s, i) => (
{i + 1}
{s.t}

{s.d}

))}
); }