Files
pawol.nu/pages/404.js
T

26 lines
752 B
JavaScript
Raw Normal View History

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}
2022-01-26 18:45:43 +04:00
src='/oki-logo-551x315.png'
2022-05-14 03:31:51 +04:00
quality={20}
2020-12-16 00:56:49 +01:00
/>
</a>
</Link>
2022-05-14 03:31:51 +04:00
<Typography variant='h2' align='center' >404 - La page nexsite pas 😔</Typography>
2020-12-16 00:56:49 +01:00
<Link href='/'>
2022-05-14 03:31:51 +04:00
<a style={{textDecoration: 'none'}}><Typography style={{marginTop: '1em', color: 'green'}} variant='h3' align='center'>Retourner à laccueil 🏡</Typography></a>
2020-12-16 00:56:49 +01:00
</Link>
</Container>
)
}