11 lines
282 B
TypeScript
11 lines
282 B
TypeScript
import NotFound from "@/components/Current/NotFound"
|
|
import { setLang } from "@/i18n/serverContext"
|
|
|
|
import type { LangParams, PageArgs } from "@/types/params"
|
|
|
|
export default function NotFoundPage({ params }: PageArgs<LangParams>) {
|
|
setLang(params.lang)
|
|
|
|
return <NotFound />
|
|
}
|