import { AdminLink, HeaderNavItem } from '@shared/layout/site-header/nav-config'; /** This app's primary nav — provided to the shared site header via HEADER_NAV_ITEMS (see app.config.ts). */ export const NAV_ITEMS: readonly HeaderNavItem[] = [ { label: $localize`:@@header.nav.overzicht:Overzicht`, to: '/dashboard' }, ]; /** This app's admin pages — provided to the shared site header via HEADER_ADMIN_LINKS. No huisstijl (that's the SSP's brief context) or zaken entry — inherited as-is from WP-61's bootstrap trim, not revisited by this migration. */ export const ADMIN_LINKS: readonly AdminLink[] = [ { label: $localize`:@@header.nav.stamdata:Stamdata`, description: $localize`:@@admin.link.stamdata.desc:Business-tabellen onderhouden`, to: '/beheer/stamdata', cap: 'stamdata:edit', }, { label: $localize`:@@header.nav.audit:Auditlog`, description: $localize`:@@admin.link.audit.desc:Toegangs- en inzagebeslissingen bekijken`, to: '/beheer/audit', cap: 'cases:manage', }, { label: $localize`:@@header.nav.functies:Functievlaggen`, description: $localize`:@@admin.link.functies.desc:Functionaliteit aan- of uitzetten`, to: '/beheer/functies', cap: 'flags:manage', }, ];