mirror of
https://git.v0id.ovh/n3wt-innov/n3wt-school.git
synced 2026-01-30 00:13:21 +00:00
chore: application prettier
This commit is contained in:
@ -1,15 +1,21 @@
|
||||
import Link from 'next/link'
|
||||
import Logo from '../components/Logo'
|
||||
import Link from 'next/link';
|
||||
import Logo from '../components/Logo';
|
||||
|
||||
export default function NotFound() {
|
||||
return (
|
||||
<div className='flex items-center justify-center min-h-screen bg-emerald-500'>
|
||||
<div className='text-center p-6 '>
|
||||
<div className="flex items-center justify-center min-h-screen bg-emerald-500">
|
||||
<div className="text-center p-6 ">
|
||||
<Logo className="w-32 h-32 mx-auto mb-4" />
|
||||
<h2 className='text-2xl font-bold text-emerald-900 mb-4'>404 | Page non trouvée</h2>
|
||||
<p className='text-emerald-900 mb-4'>La ressource que vous souhaitez consulter n'existe pas ou plus.</p>
|
||||
<Link className="text-gray-900 hover:underline" href="/">Retour Accueil</Link>
|
||||
<h2 className="text-2xl font-bold text-emerald-900 mb-4">
|
||||
404 | Page non trouvée
|
||||
</h2>
|
||||
<p className="text-emerald-900 mb-4">
|
||||
La ressource que vous souhaitez consulter n'existe pas ou plus.
|
||||
</p>
|
||||
<Link className="text-gray-900 hover:underline" href="/">
|
||||
Retour Accueil
|
||||
</Link>
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user