Merged in chore/partner-sas-404-page (pull request #3339)

chore: Fix partner-sas 404 page

* Fix 404 page

* Fix 404 links

* Fix links


Approved-by: Matilda Landström
This commit is contained in:
Anton Gunnarsson
2025-12-17 13:03:33 +00:00
parent 79f1c516c0
commit eb3b18b35e
6 changed files with 183 additions and 20 deletions

View File

@@ -1,4 +1,5 @@
import NotFound from "@/components/NotFound"
export default function NotFoundPage() {
// eslint-disable-next-line formatjs/no-literal-string-in-jsx
return <div>Not Found</div>
return <NotFound />
}

View File

@@ -1,4 +1,5 @@
import NotFound from "@/components/NotFound"
export default function NotFoundPage() {
// eslint-disable-next-line formatjs/no-literal-string-in-jsx
return <div>Not Found, missing lang in url?</div>
return <NotFound />
}