// Award section + Download + Footer
function AwardSection({ t }) {
const cert = t('award.cert');
return (
sendar
award
{t('award.title1')}
{t('award.title2')}
{t('award.title3')}
{t('award.title4')}
);
}
function Certificate({ cert }) {
return (
{cert.brand}
{cert.title}
{cert.date}
{cert.winner}
{cert.winnerCity}
{cert.recipientLabel}
{cert.recipient}
{cert.reason}
{cert.categoriesLabel}
{cert.categories.map((c, i) => - {c}
)}
{cert.note}
Marco
{cert.signature}
{cert.signatureRole}
{cert.month}
);
}
function DownloadSection({ t }) {
return (
{t('download.kicker')}
{t('download.title1')}
{t('download.title2')}
{t('download.body')}
{t('download.playStore')}
);
}
function Footer({ t }) {
const cols = t('footer.cols') || [];
return (
);
}
Object.assign(window, { AwardSection, Certificate, DownloadSection, Footer });