From a3c732dd133b1b8261b19cf64b3bf684e269e839 Mon Sep 17 00:00:00 2001 From: Marc Mintel Date: Sun, 14 Jun 2026 22:33:33 +0200 Subject: [PATCH] fix: add individual standorte to header dropdown --- app/[locale]/layout.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/[locale]/layout.tsx b/app/[locale]/layout.tsx index e202ea1af..55283ab4a 100644 --- a/app/[locale]/layout.tsx +++ b/app/[locale]/layout.tsx @@ -92,7 +92,10 @@ export default async function Layout(props: { url: `/${safeLocale}/${await mapFileSlugToTranslated('ueber-uns', safeLocale)}`, children: [ { label: safeLocale === 'de' ? 'Firma' : 'Company', url: `/${safeLocale}/${await mapFileSlugToTranslated('ueber-uns', safeLocale)}` }, - { label: safeLocale === 'de' ? 'Standorte' : 'Locations', url: `/${safeLocale}/standorte` }, + { label: safeLocale === 'de' ? 'Standorte Übersicht' : 'Locations Overview', url: `/${safeLocale}/standorte` }, + { label: 'Standort Guben', url: `/${safeLocale}/standorte/guben` }, + { label: 'Standort Kirchheilingen', url: `/${safeLocale}/standorte/kirchheilingen` }, + { label: 'Standort Bülstedt', url: `/${safeLocale}/standorte/buelstedt` }, { label: safeLocale === 'de' ? 'Unser Team' : 'Our Team', url: `/${safeLocale}/team` }, { label: safeLocale === 'de' ? 'Zertifikate' : 'Certificates', url: `/${safeLocale}/zertifikate` } ]