// About + Categories sections function AboutSection({ t }) { return (
{t('about.kicker')}

{t('about.title1')} {t('about.title2')} {t('about.title3')} {t('about.title4')}

{t('about.body')}

); } function AppStoreButton({ label }) { return ( Download on the App Store ); } function CategoriesSection({ t }) { const items = t('categories.items') || []; return (
{t('categories.kicker')}
{items.map((c, i) => ( ))}
); } function CategoryCard({ item, cta, i = 0 }) { const toneClass = `cat-${item.tone}`; // Education opens its own page; all other categories land on matchmaking. const href = item.tone === 'education' ? '/education' : '/matchmaking'; return (

{item.label}

{cta}
); } Object.assign(window, { AboutSection, CategoriesSection, AppStoreButton });