mirror of
https://github.com/theoludwig/theoludwig.git
synced 2024-11-05 13:01:30 +01:00
49 lines
1.2 KiB
TypeScript
49 lines
1.2 KiB
TypeScript
import useTranslation from 'next-translate/useTranslation'
|
|
import Link from 'next/link'
|
|
|
|
export interface ErrorPageProps {
|
|
statusCode: number
|
|
message: string
|
|
}
|
|
|
|
export const ErrorPage: React.FC<ErrorPageProps> = (props) => {
|
|
const { message, statusCode } = props
|
|
const { t } = useTranslation()
|
|
|
|
return (
|
|
<>
|
|
<h1 className='my-6 font-semibold text-4xl'>
|
|
{t('errors:error')}{' '}
|
|
<span className='text-yellow dark:text-yellow-dark'>{statusCode}</span>
|
|
</h1>
|
|
<p className='text-center text-lg'>
|
|
{message}{' '}
|
|
<Link href='/'>
|
|
<a className='text-yellow dark:text-yellow-dark hover:underline'>
|
|
{t('errors:returnToHomePage')}
|
|
</a>
|
|
</Link>
|
|
</p>
|
|
|
|
<style jsx global>
|
|
{`
|
|
main {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
min-width: 100vw;
|
|
flex: 1;
|
|
}
|
|
#__next {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding-top: 0;
|
|
height: 100vh;
|
|
}
|
|
`}
|
|
</style>
|
|
</>
|
|
)
|
|
}
|