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