diff --git a/src/app/[locale]/[...not-found]/page.tsx b/src/app/[locale]/[...not-found]/page.tsx new file mode 100644 index 0000000..0d721e6 --- /dev/null +++ b/src/app/[locale]/[...not-found]/page.tsx @@ -0,0 +1,5 @@ +import { notFound } from "next/navigation" + +export default function NotFoundDummy() { + notFound() +}