Upgrade next@15.5.6 * chore: upgrade next@15.5.6 * chore: upgrade turborepo@2.6.1 * fix typings for scandic-web * fix: set correct type for pages * cleanup * fix more route.ts typing issues * Merge branch 'master' of bitbucket.org:scandic-swap/web into chore/upgrade-next * explicitly import the types Approved-by: Linus Flood
8 lines
164 B
TypeScript
8 lines
164 B
TypeScript
import NotFound from "@/components/NotFound"
|
|
|
|
export default function NotFoundPage(
|
|
_props: PageProps<"/[lang]/middleware-error/404">
|
|
) {
|
|
return <NotFound />
|
|
}
|