Files
web/app/[lang]/(live)/not-found.tsx
Arvid Norlin 5ccb6166c3 WIP: tracking
2024-02-14 10:57:37 +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>
)
}