Files
pawol.nu/pages/404.js
T
Cédric FAMIBELLE-PRONZOLA c4ec7ee19f Rename logo files
2022-01-26 18:45:43 +04:00

26 lines
727 B
JavaScript

import {Container, Typography} from '@mui/material'
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}
src='/oki-logo-551x315.png'
quality={50}
/>
</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>
)
}