9 lines
286 B
TypeScript
9 lines
286 B
TypeScript
export default function NotFound() {
|
|
return (
|
|
<div className="flex flex-col items-center justify-center w-screen h-screen">
|
|
<h1 className="text-4xl font-bold">404</h1>
|
|
<h2 className="text-2xl font-semibold">Page not found</h2>
|
|
</div>
|
|
)
|
|
}
|