24 lines
727 B
JavaScript
24 lines
727 B
JavaScript
|
|
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
|
||
|
|
alt='Logo #OKi'
|
||
|
|
width={551}
|
||
|
|
height={315}
|
||
|
|
src='/oki-logo-551x315.png'
|
||
|
|
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>
|
||
|
|
)
|
||
|
|
}
|