// Nav + Hero function ThemeToggle({ theme, setTheme }) { return ( ); } function Nav({ t, lang, setLang, theme, setTheme }) { const [open, setOpen] = React.useState(false); const close = () => setOpen(false); return ( ); } function Hero({ t }) { return (
{t.hero.eyebrow}

{t.hero.titleA} {t.hero.titleB}

{t.hero.sub}

{t.hero.ctaA} → {t.hero.ctaB}
[01] Location
{t.hero.metaA}
[02] {t.hero.metaD}
{t.hero.metaE}
[03] {t.hero.metaF}
{t.hero.metaG}
); } Object.assign(window, { Nav, Hero });