8 lines
173 B
TypeScript
8 lines
173 B
TypeScript
|
|
export default function NotFound() {
|
||
|
|
return (
|
||
|
|
<main className="flex items-center justify-center h-screen">
|
||
|
|
404 | This page could not be found
|
||
|
|
</main>
|
||
|
|
);
|
||
|
|
}
|