feat(SW-2999): cleanup current web * feat(SW-2999): cleanup current web * Merge master * Removed unused fonts Approved-by: Joakim Jäderberg
8 lines
195 B
TypeScript
8 lines
195 B
TypeScript
import NotFound from "@/components/NotFound"
|
|
|
|
import type { LangParams, PageArgs } from "@/types/params"
|
|
|
|
export default function NotFoundPage({}: PageArgs<LangParams>) {
|
|
return <NotFound />
|
|
}
|