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'>
|
|
|
|
|
<Link href='/'>
|
|
|
|
|
<a>
|
|
|
|
|
<Image
|
|
|
|
|
alt='Logo #OKi'
|
|
|
|
|
width={551}
|
|
|
|
|
height={315}
|
2020-12-22 23:14:54 +01:00
|
|
|
src='/logo-551x315.png'
|
|
|
|
|
quality={50}
|
2020-12-16 00:56:49 +01:00
|
|
|
/>
|
|
|
|
|
</a>
|
|
|
|
|
</Link>
|
|
|
|
|
<Typography variant='h2' align='center' >404 - Pa ni ayen 🥺</Typography>
|
|
|
|
|
<Link href='/'>
|
|
|
|
|
<a style={{textDecoration: 'none'}}><Typography style={{marginTop: '1em', color: 'green'}} variant='h3' align='center'>Viré a kaz 🏡</Typography></a>
|
|
|
|
|
</Link>
|
|
|
|
|
</Container>
|
|
|
|
|
)
|
|
|
|
|
}
|