10 lines
No EOL
332 B
TypeScript
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>
|
|
);
|
|
} |