Files
web/app/[lang]/(live)/not-found.tsx
2024-02-14 10:57:37 +01:00

14 lines
226 B
TypeScript

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