Files
web/app/[lang]/(live)/not-found.tsx
2024-06-05 13:25:10 +02:00

12 lines
287 B
TypeScript

import { getIntl } from "@/i18n"
export default async function NotFound() {
const { formatMessage } = await getIntl()
return (
<main>
<h1>{formatMessage({ id: "Not found" })}</h1>
<p>{formatMessage({ id: "Could not find requested resource" })}</p>
</main>
)
}