diff --git a/frontend/src/pages/LandingPage.tsx b/frontend/src/pages/LandingPage.tsx index b4a40b89..9b48963c 100644 --- a/frontend/src/pages/LandingPage.tsx +++ b/frontend/src/pages/LandingPage.tsx @@ -1238,6 +1238,7 @@ export const LandingPage: React.FC = () => { {t('header.nav.examples')} {t('header.nav.editor')} {t('header.nav.pricing')} + {t('header.nav.classroom', 'For schools')} {t('header.nav.about')}

{t('footer.about')}

diff --git a/frontend/src/seoRoutes.ts b/frontend/src/seoRoutes.ts index 16ef1b3f..472543d6 100644 --- a/frontend/src/seoRoutes.ts +++ b/frontend/src/seoRoutes.ts @@ -410,6 +410,19 @@ export const SEO_ROUTES: SeoRoute[] = [ }, }, + // ── Classroom (institutional sales landing) — Phase 3 D3.7 + { + path: '/classroom', + priority: 0.85, + changefreq: 'monthly', + seoMeta: { + title: 'Velxio for educators — full Pro features for your classroom', + description: + 'Velxio for Classroom gives every student in your course Pro-tier access (private projects, GitHub Sync, BOM and schematic exports, offline desktop) under a single institution contract. From $40/student/year with volume discounts.', + url: `${DOMAIN}/classroom`, + }, + }, + // ── Auth / admin (noindex) { path: '/login', noindex: true }, { path: '/register', noindex: true },