feat(landing): Add team

This commit is contained in:
2026-01-10 18:04:29 +01:00
parent e306ea33a6
commit 3e4f7db052
7 changed files with 298 additions and 4 deletions

View File

@@ -217,19 +217,28 @@ onMounted(() => {
const navigationItems = computed<NavigationMenuItem[]>(() => [
{
label: t('nav.forWorksCouncils'),
to: '#betriebsraete'
to: '/#betriebsraete',
active: false
},
{
label: t('nav.forCompanies'),
to: '#unternehmen'
to: '/#unternehmen',
active: false
},
{
label: t('nav.features'),
to: '#features'
to: '/#features',
active: false
},
{
label: t('nav.team'),
to: '/team',
active: false
},
{
label: t('nav.contact'),
to: '#kontakt'
to: '/#kontakt',
active: false
}
])