* fix: findLang only returns acceptable languages * fix: fallback to use header x-lang if we haven't setLang yet * fix: languageSchema, allow uppercase Approved-by: Linus Flood
8 lines
203 B
TypeScript
8 lines
203 B
TypeScript
import NotFound from "@/components/Current/NotFound"
|
|
|
|
import type { LangParams, PageArgs } from "@/types/params"
|
|
|
|
export default function NotFoundPage({}: PageArgs<LangParams>) {
|
|
return <NotFound />
|
|
}
|