Files
pawol.nu/pages/404.js
T

26 lines
747 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
2023-03-20 20:12:20 +04:00
alt='Logo OKI'
width={512}
height={512}
src='/logo-512x512.png'
2022-05-14 03:31:51 +04:00
quality={20}
2020-12-16 00:56:49 +01:00
/>
</a>
</Link>
2023-04-15 21:57:53 +04:00
<Typography variant='h2' align='center' >404 - La page nexiste 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>
)
}