/* Page compositions. Each receives { t, lang, setLang, theme, setTheme }. */
function HomePage({ t }) {
return (
);
}
function HowPage({ t }) {
return (
);
}
function WhyPage({ t }) {
return (
);
}
function CasesPage({ t }) {
return (
);
}
function ServicesPage({ t }) {
return (
);
}
function AboutPage({ t }) {
return (
);
}
function ContactPage({ t }) {
return ;
}
Object.assign(window, { HomePage, HowPage, WhyPage, CasesPage, ServicesPage, AboutPage, ContactPage });