// Dependencies import { useContext } from 'react' // Hooks import { useNavigation } from 'site/hooks/use-navigation.mjs' // Contenxt import { NavigationContext } from 'shared/context/navigation-context.mjs' // Components import { SectionsMenu, ns as sectionsNs } from 'site/components/navigation/sections-menu.mjs' import { ModalWrapper } from 'shared/components/wrappers/modal.mjs' import { nsMerge } from 'shared/utils.mjs' import { ChoiceLink } from 'shared/components/choice-link.mjs' import { NavLinks, Breadcrumbs } from 'shared/components/navigation/sitenav.mjs' export const ns = nsMerge(sectionsNs) export const ModalMenu = () => { const { slug } = useContext(NavigationContext) const { siteNav } = useNavigation() return (

Content per role

Search & Sitemap

Cannot find what you are looking for?

If you cannot find what you are looking for but you know the key words, try our search. The sitemap lists all pages on this website. It can give you a good idea of what you can find here.

You are here

) }