2
2
mirror of https://github.com/Thream/website.git synced 2024-07-21 09:28:32 +02:00
website/pages/404.tsx

34 lines
984 B
TypeScript
Raw Normal View History

2022-08-31 21:44:33 +02:00
import type { GetStaticProps, NextPage } from 'next'
2021-10-24 05:19:39 +02:00
import useTranslation from 'next-translate/useTranslation'
2022-03-16 12:18:09 +01:00
import { ErrorPage } from '../components/ErrorPage'
import { Head } from '../components/Head'
import { Header } from '../components/Header'
2022-08-31 21:44:33 +02:00
import type { FooterProps } from '../components/Footer'
import { Footer } from '../components/Footer'
2021-10-24 05:19:39 +02:00
2021-12-28 16:06:58 +01:00
const Error404: NextPage<FooterProps> = (props) => {
2021-10-24 05:19:39 +02:00
const { t } = useTranslation()
const { version } = props
2021-10-24 05:19:39 +02:00
return (
<>
<Head title='Thream | 404' />
2021-10-24 05:19:39 +02:00
2021-10-24 05:48:06 +02:00
<Header />
<main className='flex flex-col md:mx-auto md:max-w-4xl lg:max-w-7xl'>
<ErrorPage statusCode={404} message={t('errors:page-not-found')} />
</main>
<Footer version={version} />
2021-10-24 05:19:39 +02:00
</>
)
}
export const getStaticProps: GetStaticProps<FooterProps> = async () => {
const { readPackage } = await import('read-pkg')
const { version } = await readPackage()
return { props: { version } }
2021-10-24 05:19:39 +02:00
}
export default Error404