one/frontend/src/app/not-found.tsx
Ameya Shenoy dd641fc5aa fix: website
Signed-off-by: Ameya Shenoy <shenoy.ameya@gmail.com>
2025-06-09 12:26:15 +05:30

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