Create Custom500

This commit is contained in:
Cédric FAMIBELLE-PRONZOLA
2022-05-14 03:32:44 +04:00
parent 599cbe4aae
commit c1e8960290
+23
View File
@@ -0,0 +1,23 @@
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>
)
}