9 lines
168 B
TypeScript
9 lines
168 B
TypeScript
|
|
export default function NotFoundPage() {
|
|
return (
|
|
<main className="flex min-h-screen flex-col items-center justify-start">
|
|
<h1>404</h1>
|
|
</main>
|
|
);
|
|
}
|