Numbered step sequences for methods, repeating flows, and milestone timelines. Three layouts: `cards` (horizontal grid with numerals or tone cards), `sequence` (left-to-right flow with arrows), `timeline` (spine with status pins and optional dates). Stagger in on slide enter (client).
Examples
<ProcessSteps
title="How the pilot runs"
layout="cards"
numbering="circle"
steps={[
{ title: "Discover", description: "Two discovery sessions, five interviews." },
{ title: "Design", description: "Agree the target flow and owners." },
{ title: "Build", description: "Ship the first automation in a sandbox." },
{ title: "Adopt", description: "Handover with a runbook and metrics." },
]}
/>
<ProcessSteps
title="The weekly operating rhythm"
layout="sequence"
numbering="circle"
steps={[
{ title: "Plan", description: "Set the week's top three priorities." },
{ title: "Execute", description: "Ship against the plan daily." },
{ title: "Review", description: "Friday retro against the plan." },
{ title: "Adjust", description: "Carry learnings into next week's plan." },
]}
/>
<ProcessSteps
title="Programme milestones"
layout="timeline"
steps={[
{ title: "Last IC", date: "Mar 2026", status: "done" },
{ title: "Wave 1 live", date: "Jun 2026", status: "now" },
{ title: "Wave 2 scoped", date: "Sep 2026", status: "next" },
{ title: "Year-end review", date: "Dec 2026", status: "next" },
]}
/>