const JOIN = [ { num: 'Wednesday, 1st July 2026', title: 'Save yourself a seat', desc: "Be in the room for the first evening in Lisbon: the JACK story, an aperitivo, music, and people who care like you do.", cta: 'reserve a seat →', tone: 'olive', href: '#gathering', }, { num: 'stay connected', title: 'Join the community', desc: "A quiet circle on WhatsApp and beyond, where we swap tools, ethical finds, and ways to help. You are not powerless, and you are not alone.", cta: 'join the circle →', tone: 'sage', href: '#', }, { num: 'lend a hand', title: 'Offer your skills', desc: "Not everyone can move to Congo for thirty years. But everyone can do something: visibility, ideas, partnerships, a craft. Tell us what's yours.", cta: 'write to us →', tone: 'ochre', href: '#', }, ]; function Join() { return (
how to be part of it

You don't have to do everything.
Just something.

{JOIN.map((j, i) => (
{j.num}

{j.title}

{j.desc}

{j.cta}
))}
); } window.Join = Join;