Files
MAD-Platform/app/not-found.tsx

54 lines
2.2 KiB
TypeScript
Raw Permalink Normal View History

2026-01-20 17:46:14 +01:00
import Link from 'next/link';
import Image from 'next/image';
export default function NotFound() {
return (
2026-02-08 15:27:44 +01:00
<div className="min-h-screen flex items-center justify-center bg-cwhite px-4 py-8">
<div className="text-center w-full max-w-md mx-auto">
2026-01-20 17:46:14 +01:00
{/* Logo */}
2026-02-08 15:27:44 +01:00
<div className="flex justify-center mb-6 md:mb-8">
2026-01-20 17:46:14 +01:00
<Image
src="/logo.svg"
alt="MAD Logo"
2026-02-08 15:27:44 +01:00
width={100}
height={100}
className="w-20 h-20 md:w-[120px] md:h-[120px]"
2026-01-20 17:46:14 +01:00
/>
</div>
{/* 404 Content */}
<div className="max-w-md mx-auto">
2026-02-08 15:27:44 +01:00
<h1 className="text-7xl md:text-9xl font-bold text-lblue mb-3 md:mb-4">404</h1>
<h2 className="text-2xl md:text-3xl font-semibold text-gray-900 mb-3 md:mb-4">
2026-01-20 17:46:14 +01:00
Page non trouvée
</h2>
2026-02-08 15:27:44 +01:00
<p className="text-sm md:text-base text-gray-600 mb-6 md:mb-8 px-2">
2026-01-20 17:46:14 +01:00
Désolé, la page que vous recherchez n'existe pas ou a é déplacée.
</p>
{/* Action Buttons */}
2026-02-08 15:27:44 +01:00
<div className="flex flex-col gap-3 md:gap-4 justify-center">
2026-01-20 17:46:14 +01:00
<Link
href="/dashboard"
2026-02-08 15:27:44 +01:00
className="inline-flex items-center justify-center px-6 py-3 border border-transparent rounded-lg text-sm font-medium text-white bg-lblue hover:bg-dblue focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-lblue transition-colors w-full md:w-auto"
2026-01-20 17:46:14 +01:00
>
Retour au tableau de bord
</Link>
<Link
href="/login"
2026-02-08 15:27:44 +01:00
className="inline-flex items-center justify-center px-6 py-3 border border-gray-300 rounded-lg text-sm font-medium text-gray-700 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-lblue transition-colors w-full md:w-auto"
2026-01-20 17:46:14 +01:00
>
Page de connexion
</Link>
</div>
</div>
{/* Footer */}
2026-02-08 15:27:44 +01:00
<div className="mt-8 md:mt-12 text-center text-xs text-gray-500 px-4">
© {new Date().getFullYear()} MAD - <a href="https://legouix.dev" target="_blank" rel="noopener noreferrer" className="text-lblue hover:text-dblue">Propulsé par LGX</a>
2026-01-20 17:46:14 +01:00
</div>
</div>
</div>
);
}