function ProcessDiagram() { const [active, setActive] = React.useState(1); const steps = [ { n: 1, title: 'Process Architecture', body: 'Map the major process areas and their cognitive processing levels.' }, { n: 2, title: 'Identify Handoffs', body: 'Catalog every point where work, information, or responsibility transfers.' }, { n: 3, title: 'Define Requirements', body: 'Agree on inputs, formats, timing, and quality — sender and receiver, explicit.' }, { n: 4, title: 'Prioritize AI', body: 'Sequence implementations by cognitive level, handoff health, and impact.' }, ]; return (
The path forward

Paying down process debt, in four steps.

{/* baseline */}
{/* nodes */}
{steps.map(s => { const isActive = active === s.n; return ( ); })}
{/* active step body */}
0{active}.

{steps[active - 1].title}

{steps[active - 1].body}

); } window.ProcessDiagram = ProcessDiagram;