Files
web/app/[lang]/(preview)/not-found.tsx
2024-02-12 13:53:43 +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>
)
}