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) {