import { GetStaticProps, NextPage } from 'next' import useTranslation from 'next-translate/useTranslation' import { ErrorPage } from 'components/ErrorPage' import { Head } from 'components/Head' import { Header } from 'components/Header' import { Footer, FooterProps } from 'components/Footer' const Error404: NextPage = (props) => { const { t } = useTranslation() const { version } = props return ( <>