Files
pawol.nu/app/not-found.js
T

24 lines
745 B
JavaScript
Raw Normal View History

2020-12-16 00:56:49 +01:00
import Link from 'next/link'
import Image from 'next/image'
2023-07-22 13:05:50 +04:00
import {Container, Typography} from '@mui/material'
2020-12-16 00:56:49 +01:00
2023-07-22 13:05:50 +04:00
export default function NotFound() {
2020-12-16 00:56:49 +01:00
return (
2023-07-22 13:05:50 +04:00
<Container sx={{textAlign: 'center'}} maxWidth='sm'>
2023-07-14 21:50:31 +04:00
<Link passHref href='/'>
<Image
alt='Logo OKI'
2023-07-22 13:05:50 +04:00
width={192}
height={192}
src='/logo-192x192.png'
2023-07-14 21:50:31 +04:00
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 nexiste 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 à laccueil 🏡</Typography>
2020-12-16 00:56:49 +01:00
</Link>
</Container>
)
}