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 'components/ui/Lead' 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 (
{/* eslint-disable-next-line jsx-a11y/anchor-is-valid */} {/* eslint-disable-next-line jsx-a11y/anchor-is-valid */} GitHub Docs
) } export const SimpleFooter = () => { return ( ) }