diff --git a/src/components/SiteFooter.astro b/src/components/SiteFooter.astro index e753ba5..6c41a2b 100644 --- a/src/components/SiteFooter.astro +++ b/src/components/SiteFooter.astro @@ -1,9 +1,10 @@ --- /** - * Site footer — small brand mark, tiny nav (About + GitHub), copyright. + * Site footer — small brand mark, tiny nav, copyright. * - * Pass 1 scope: only Pass 1 pages are linked. Pass 2 adds Products, - * Contact, Impressum, Datenschutz when the pages exist. + * Nav lists locale-aware About, Contact, Impressum, and an external + * GitHub link. Products and Datenschutz entries arrive with their + * respective Pass 2 phases. */ import BrandLogo from './BrandLogo.astro'; @@ -16,6 +17,7 @@ const t = getUiStrings(locale).footer; const aboutHref = locale === 'de' ? '/ueber' : '/en/about'; const contactHref = locale === 'de' ? '/kontakt' : '/en/contact'; +const legalHref = locale === 'de' ? '/impressum' : '/en/legal'; ---