one/frontend/src/app/not-found.tsx

8 lines
173 B
TypeScript
Raw Normal View History

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