import React from 'react' import type { ReactElement } from 'react' import Head from 'next/head' import BaseButton from '../components/BaseButton' import CardBox from '../components/CardBox' import SectionFullScreen from '../components/SectionFullScreen' import LayoutGuest from '../layouts/Guest' import { getPageTitle } from '../config' export default function Error() { return ( <> {getPageTitle('Error')} } >

Unhandled exception

An Error Occurred

) } Error.getLayout = function getLayout(page: ReactElement) { return {page} }