Files
pawol.nu/pages/404.js
T

24 lines
719 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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 passHref href='/'>
<Image
alt='Logo OKI'
width={512}
height={512}
src='/logo-512x512.png'
quality={20}
/>
</Link>
<Typography variant='h2' align='center' >404 - La page nexiste pas 😔</Typography>
<Link passHref href='/' style={{textDecoration: 'none'}}>
<Typography style={{marginTop: '1em', color: 'green'}} variant='h3' align='center'>Retourner à laccueil 🏡</Typography>
</Link>
</Container>
)
}