1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2024-09-19 14:05:53 +02:00
.profile/pages/500.tsx

33 lines
910 B
TypeScript
Raw Normal View History

2021-04-18 01:56:23 +02:00
import { GetStaticProps } from 'next'
import useTranslation from 'next-translate/useTranslation'
import { ErrorPage } from 'components/ErrorPage'
2021-04-18 23:13:54 +02:00
import { Head } from 'components/Head'
2021-07-27 13:36:35 +02:00
import { Header } from 'components/Header'
import { Footer, FooterProps } from 'components/Footer'
2021-04-18 01:56:23 +02:00
2021-07-27 13:36:35 +02:00
const Error500: React.FC<FooterProps> = (props) => {
2021-04-18 01:56:23 +02:00
const { t } = useTranslation()
2021-07-27 13:36:35 +02:00
const { version } = props
2021-04-18 01:56:23 +02:00
return (
<>
<Head title='Divlo - 500' />
2021-07-27 13:36:35 +02:00
<Header />
<main className='flex flex-col md:mx-auto md:max-w-4xl lg:max-w-7xl'>
<ErrorPage statusCode={500} message={t('errors:serverError')} />
</main>
<Footer version={version} />
2021-04-18 01:56:23 +02:00
</>
)
}
2021-07-27 13:36:35 +02:00
export const getStaticProps: GetStaticProps<FooterProps> = async () => {
2021-08-16 15:31:35 +02:00
const { readPackage } = await import('read-pkg')
const { version } = await readPackage()
2021-07-27 13:36:35 +02:00
return { props: { version } }
2021-04-18 01:56:23 +02:00
}
export default Error500