inffo2/src/app/not-found.tsx
2025-06-24 15:01:42 +02:00

10 lines
No EOL
332 B
TypeScript

export default function NotFound() {
return (
<div className="flex h-screen items-center justify-center">
<div className="text-center">
<h1 className="text-4xl font-bold mb-4">404 - Page Not Found</h1>
<p className="text-lg">The page you are looking for does not exist.</p>
</div>
</div>
);
}