Files
web/app/[lang]/(preview-current)/not-found.tsx
2024-02-22 09:47:59 +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>
)
}