const PILLARS = [ { from: 'guilt', to: 'action', desc: 'A few real, repeatable things, small enough to actually keep.', }, { from: 'isolation', to: 'community', desc: 'Good people, back in the same room. Caring alone is exhausting.', }, { from: 'hopelessness', to: 'empowerment', desc: 'One ordinary person, then a room full of them.', }, ]; function Pillars() { return (
what we're really doing

Three small turns, made together.

{PILLARS.map((p) => (

{p.from} {p.to}

{p.desc}

))}
); } window.Pillars = Pillars;