mirror of
https://github.com/theoludwig/theoludwig.git
synced 2024-11-05 04:51:30 +01:00
33 lines
899 B
TypeScript
33 lines
899 B
TypeScript
import { GetStaticProps } from 'next'
|
|
import useTranslation from 'next-translate/useTranslation'
|
|
import readPackageJSON from 'read-pkg'
|
|
|
|
import { ErrorPage } from 'components/ErrorPage'
|
|
import { Head } from 'components/Head'
|
|
import { Header } from 'components/Header'
|
|
import { Footer, FooterProps } from 'components/Footer'
|
|
|
|
const Error404: React.FC<FooterProps> = (props) => {
|
|
const { t } = useTranslation()
|
|
const { version } = props
|
|
|
|
return (
|
|
<>
|
|
<Head title='Divlo - 404' />
|
|
|
|
<Header />
|
|
<main className='flex flex-col md:mx-auto md:max-w-4xl lg:max-w-7xl'>
|
|
<ErrorPage statusCode={404} message={t('errors:notFound')} />
|
|
</main>
|
|
<Footer version={version} />
|
|
</>
|
|
)
|
|
}
|
|
|
|
export const getStaticProps: GetStaticProps<FooterProps> = async () => {
|
|
const { version } = await readPackageJSON()
|
|
return { props: { version } }
|
|
}
|
|
|
|
export default Error404
|