9 lines
241 B
TypeScript
9 lines
241 B
TypeScript
export default function NotFound() {
|
|
return (
|
|
<div className="flex flex-col items-center justify-center gap-4">
|
|
<div className="text-2xl font-bold">Error 404</div>
|
|
<div className="text-xl">Not found</div>
|
|
</div>
|
|
);
|
|
}
|