mirror of
https://github.com/theoludwig/theoludwig.git
synced 2024-11-05 04:51:30 +01:00
39 lines
1.1 KiB
TypeScript
39 lines
1.1 KiB
TypeScript
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'
|
|
import { getDefaultDescription } from 'utils/getDefaultDescription'
|
|
|
|
interface Error404Props extends FooterProps {
|
|
description: string
|
|
}
|
|
|
|
const Error404: NextPage<Error404Props> = (props) => {
|
|
const { t } = useTranslation()
|
|
const { version, description } = props
|
|
|
|
return (
|
|
<>
|
|
<Head title='404 | Divlo' description={description} />
|
|
|
|
<Header showLanguage />
|
|
<main className='flex flex-col md:mx-auto md:max-w-4xl lg:max-w-7xl'>
|
|
<ErrorPage statusCode={404} message={t('errors:not-found')} />
|
|
</main>
|
|
<Footer version={version} />
|
|
</>
|
|
)
|
|
}
|
|
|
|
export const getStaticProps: GetStaticProps<FooterProps> = async () => {
|
|
const { readPackage } = await import('read-pkg')
|
|
const { version } = await readPackage()
|
|
const description = getDefaultDescription()
|
|
return { props: { version, description } }
|
|
}
|
|
|
|
export default Error404
|