feat(WEB-220): label translations
This commit is contained in:
@@ -1,8 +1,11 @@
|
||||
export default function NotFound() {
|
||||
import { getIntl } from "@/i18n"
|
||||
|
||||
export default async function NotFound() {
|
||||
const { formatMessage } = await getIntl()
|
||||
return (
|
||||
<main>
|
||||
<h1>Not found</h1>
|
||||
<p>Could not find requested resource</p>
|
||||
<h1>{formatMessage({ id: "Not found" })}</h1>
|
||||
<p>{formatMessage({ id: "Could not find requested resource" })}</p>
|
||||
</main>
|
||||
)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user