Files
pawol.nu/pages/500.js
T

24 lines
722 B
JavaScript
Raw Normal View History

2022-05-14 03:32:44 +04:00
import {Container, Typography} from '@mui/material'
import Link from 'next/link'
import Image from 'next/image'
export default function Custom500() {
return (
<Container maxWidth='sm'>
<Link href='/'>
<a>
<Image
2023-03-20 20:12:20 +04:00
alt='Logo OKI'
width={512}
height={512}
src='/logo-512x512.png'
2022-05-14 03:32:44 +04:00
quality={20}
/>
</a>
</Link>
<Typography variant='h2' align='center' >500 - Erreur du serveur 🥺</Typography>
<Typography style={{marginTop: '1em', color: 'green'}} variant='h3' align='center'>Nous mettons tout en œuvre pour rétablir le site dans les plus brefs délais 💪🏾</Typography>
</Container>
)
}