Files
web/app/[lang]/not-found.tsx
2024-02-07 11:58:54 +01:00

9 lines
149 B
TypeScript

export default function NotFound() {
return (
<main>
<h2>Not Found</h2>
<p>Could not find requested resource</p>
</main>
)
}