2022-01-19 07:06:26 +04:00
|
|
|
|
import {Container, Typography} from '@mui/material'
|
2020-12-16 00:56:49 +01:00
|
|
|
|
import Link from 'next/link'
|
|
|
|
|
|
import Image from 'next/image'
|
|
|
|
|
|
|
|
|
|
|
|
export default function Custom404() {
|
|
|
|
|
|
return (
|
|
|
|
|
|
<Container maxWidth='sm'>
|
2023-07-14 21:50:31 +04:00
|
|
|
|
<Link passHref href='/'>
|
|
|
|
|
|
<Image
|
|
|
|
|
|
alt='Logo OKI'
|
|
|
|
|
|
width={512}
|
|
|
|
|
|
height={512}
|
|
|
|
|
|
src='/logo-512x512.png'
|
|
|
|
|
|
quality={20}
|
|
|
|
|
|
/>
|
2020-12-16 00:56:49 +01:00
|
|
|
|
</Link>
|
2023-04-15 21:57:53 +04:00
|
|
|
|
<Typography variant='h2' align='center' >404 - La page n’existe pas 😔</Typography>
|
2023-07-14 21:50:31 +04:00
|
|
|
|
<Link passHref href='/' style={{textDecoration: 'none'}}>
|
|
|
|
|
|
<Typography style={{marginTop: '1em', color: 'green'}} variant='h3' align='center'>Retourner à l’accueil 🏡</Typography>
|
2020-12-16 00:56:49 +01:00
|
|
|
|
</Link>
|
|
|
|
|
|
</Container>
|
|
|
|
|
|
)
|
|
|
|
|
|
}
|