import Page from 'site/components/wrappers/page.js' import useApp from 'site/hooks/useApp.js' import Layout from 'site/components/layouts/bare' import Head from 'next/head' import Robot from 'shared/components/robot' import Popout from 'shared/components/popout' import PageLink from 'shared/components/page-link' const Page404 = () => { const app = useApp() const title = '404: Page not found' 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