// Hooks import { useNavigation } from 'site/hooks/use-navigation.mjs' // Components import Head from 'next/head' import { PageWrapper } from 'shared/components/wrappers/page.mjs' import { Robot } from 'shared/components/robot/index.mjs' import { Popout } from 'shared/components/popout.mjs' import { PageLink } from 'shared/components/page-link.mjs' import { BaseLayout, BaseLayoutLeft, BaseLayoutWide } from 'shared/components/base-layout.mjs' import { NavLinks, Breadcrumbs, MainSections } from 'shared/components/navigation/sitenav.mjs' const Page404 = () => { const title = '404: Page not found' const { siteNav } = useNavigation({ ignoreControl: true }) const slug = '404' return (

404: Page not found

We could not find what you are looking for

Did you arrive here from a link?

In that case, that link is broken.

If it was one of our links, please {' '} so we can fix it.

) } export default Page404