Fix next/link error after update

This commit is contained in:
2023-07-14 21:50:31 +04:00
parent edb6ee75fd
commit a812f31c3c
2 changed files with 18 additions and 22 deletions
+3 -5
View File
@@ -5,8 +5,7 @@ import Image from 'next/image'
export default function Custom404() { export default function Custom404() {
return ( return (
<Container maxWidth='sm'> <Container maxWidth='sm'>
<Link href='/'> <Link passHref href='/'>
<a>
<Image <Image
alt='Logo OKI' alt='Logo OKI'
width={512} width={512}
@@ -14,11 +13,10 @@ export default function Custom404() {
src='/logo-512x512.png' src='/logo-512x512.png'
quality={20} quality={20}
/> />
</a>
</Link> </Link>
<Typography variant='h2' align='center' >404 - La page nexiste pas 😔</Typography> <Typography variant='h2' align='center' >404 - La page nexiste pas 😔</Typography>
<Link href='/'> <Link passHref href='/' style={{textDecoration: 'none'}}>
<a style={{textDecoration: 'none'}}><Typography style={{marginTop: '1em', color: 'green'}} variant='h3' align='center'>Retourner à laccueil 🏡</Typography></a> <Typography style={{marginTop: '1em', color: 'green'}} variant='h3' align='center'>Retourner à laccueil 🏡</Typography>
</Link> </Link>
</Container> </Container>
) )
+1 -3
View File
@@ -5,8 +5,7 @@ import Image from 'next/image'
export default function Custom500() { export default function Custom500() {
return ( return (
<Container maxWidth='sm'> <Container maxWidth='sm'>
<Link href='/'> <Link passHref href='/'>
<a>
<Image <Image
alt='Logo OKI' alt='Logo OKI'
width={512} width={512}
@@ -14,7 +13,6 @@ export default function Custom500() {
src='/logo-512x512.png' src='/logo-512x512.png'
quality={20} quality={20}
/> />
</a>
</Link> </Link>
<Typography variant='h2' align='center' >500 - Erreur du serveur 🥺</Typography> <Typography variant='h2' align='center' >500 - Erreur du serveur 🥺</Typography>
<Typography style={{marginTop: '1em', color: 'green'}} variant='h3' align='center'>Nous mettons tout en œuvre pour rétablir le site dans les plus brefs délais 💪🏾</Typography> <Typography style={{marginTop: '1em', color: 'green'}} variant='h3' align='center'>Nous mettons tout en œuvre pour rétablir le site dans les plus brefs délais 💪🏾</Typography>