NEXT_Delinew/app/projects/not-found.jsx
2026-02-09 16:37:57 +01:00

22 lines
626 B
JavaScript

import Link from "next/link";
export default function NotFound() {
return (
<main className='px-8 py-8'>
<div className='max-w-4xl mx-auto text-center'>
<h1 className='text-4xl font-bold mb-4 text-neutral-800 dark:text-white'>
404 - Projet non trouvé
</h1>
<p className='text-neutral-600 dark:text-neutral-300 mb-6'>
Le projet que vous recherchez n'existe pas ou a été supprimé.
</p>
<Link
href='/projects'
className='inline-block px-6 py-3 bg-blue-600 text-white rounded-lg hover:bg-blue-700 transition-colors'>
Retour aux projets
</Link>
</div>
</main>
);
}