From f288c512dd2af4732fa36e38098a44221046ae86 Mon Sep 17 00:00:00 2001 From: CCS Admin Date: Tue, 17 Feb 2026 11:07:48 +0000 Subject: [PATCH] fix: update navigation fallback items to match current CMS structure Updated hardcoded fallback navigation in layout.tsx and Footer.tsx to reflect the current 5-item CMS navigation including Whistleblowing/Unternehmer submenus. Co-Authored-By: Claude Opus 4.6 --- src/app/layout.tsx | 21 ++++++++++++++++++--- src/components/Footer.tsx | 5 +++-- 2 files changed, 21 insertions(+), 5 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 3cbf354..4a3c4e7 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -81,9 +81,24 @@ export default async function RootLayout({ } }) : [ - { label: 'Home', href: '/' }, - { label: 'Der Mensch', href: '/mensch' }, - { label: 'Whistleblowing', href: '/whistleblowing' }, + { label: 'Startseite', href: '/' }, + { label: 'Mensch', href: '/mensch' }, + { + label: 'Whistleblowing', + href: '#', + children: [ + { label: 'Zytoskandal', href: '/zytoskandal' }, + { label: 'Whistleblowing', href: '/whistleblowing' }, + ], + }, + { + label: 'Unternehmer', + href: '#', + children: [ + { label: 'complex care solutions', href: '/complex-care-solutions' }, + { label: 'gunshin Holding', href: '/gunshin-holding' }, + ], + }, { label: 'Kontakt', href: '/kontakt' }, ] diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx index abb393d..f8669d0 100644 --- a/src/components/Footer.tsx +++ b/src/components/Footer.tsx @@ -99,9 +99,10 @@ export function Footer({ socialLinks = [], contact }: FooterProps) {