Files
realm-homepage/src/app/not-found.tsx
2024-09-02 21:04:05 +02:00

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>
);
}