mediahub-fe/app/[locale]/[...not-found]/page.tsx

8 lines
107 B
TypeScript

import { notFound } from "next/navigation";
const page = () => {
notFound();
};
export default page;