function Events({ theme, t }) { const [open, setOpen] = React.useState(0); return (
{t.events.kicker} {t.events.title}
{t.events.items.map((ev, i) => { const isOpen = i === open; return (

{ev.desc}

{t.ui.inquire} →
); })}
); } function About({ theme, t }) { return (
{t.about.kicker} {t.about.title}
{t.about.paragraphs.map((p, i) =>

{p}

)}
{t.alt.neonSign}
{t.alt.socialRed}
{t.about.stats.map((s, i) =>
{s.n}
{s.label}
)}
); } Object.assign(window, { Events, About });