import Head from 'next/head' import Link from 'next/link' import { useRouter } from 'next/router' import { MarkGithubIcon, CommentDiscussionIcon } from '@primer/octicons-react' import { Lead } from '@/frame/components/ui/Lead' import styles from './GenericError.module.scss' export function GenericError() { return (
GitHub Docs

Ooops!

It looks like something went wrong.

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

Contact support
) } export const SimpleHeader = () => { const router = useRouter() return (
GitHub Docs
) } export const SimpleFooter = () => { return ( ) }