import { SimpleHeader, SimpleFooter } from 'components/GenericError' import Head from 'next/head' import { CommentDiscussionIcon } from '@primer/octicons-react' import { useVersion } from 'components/hooks/useVersion' const Custom404 = () => { const { isEnterprise } = useVersion() return (
404 - Page not found

Ooops!

It looks like this page doesn't exist.

We track these errors automatically, but if the problem persists please feel free to contact us.

Contact support
) } export default Custom404