const HERO_VARIANTS = {
oneperson: {
eyebrow: 'a community, not a campaign',
title: (
<>“I'm just one person. What can I do?”>
),
lede: (
<>That question is exactly why we started. One person can do more than they think, and when we come together, small gestures turn into something big.>
),
},
together: {
eyebrow: 'collective energy for a better world',
title: (
<>One gesture is small. A thousand together is not.>
),
lede: (
<>We share stories of what a single person can do, and we prove that when good people get together, even the smallest actions add up to a lot.>
),
},
care: {
eyebrow: 'soft activism · conscious community',
title: (
<>You already care. That's the hard part done.>
),
lede: (
<>The Good People is a room, a story, a few small things worth trying, for everyone who wants to do something without burning out trying.>
),
},
};
window.HERO_VARIANTS = HERO_VARIANTS;
function Hero({ variant = 'oneperson' }) {
const v = HERO_VARIANTS[variant] || HERO_VARIANTS.oneperson;
return (