Files
web/app/[lang]/(preview)/not-found.tsx
2024-05-20 00:51:16 +02:00

9 lines
149 B
TypeScript

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