);
}
function AppStoreButton({ label }) {
return (
Download on theApp 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 (