Files
pawol.nu/app/error.js
T

22 lines
691 B
JavaScript
Raw Normal View History

2023-07-22 13:05:50 +04:00
'use client'
2022-05-14 03:32:44 +04:00
import Image from 'next/image'
2023-07-22 13:05:50 +04:00
import {Container, Typography} from '@mui/material'
2022-05-14 03:32:44 +04:00
2023-07-22 13:05:50 +04:00
export default function Error() {
2022-05-14 03:32:44 +04:00
return (
2023-07-22 13:05:50 +04:00
<Container sx={{textAlign: 'center', minHeight: '100vh'}} maxWidth='sm'>
<Image
alt='Logo OKI'
width={192}
height={192}
src='/logo-192x192.png'
quality={[20, 75]}
loading='eager'
2023-07-22 13:05:50 +04:00
/>
<Typography variant='h2' align='center' >500 - Erreur du serveur 😭</Typography>
2022-05-14 03:32:44 +04:00
<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>
)
}