diff --git a/app/[locale]/works/[category]/page.tsx b/app/[locale]/works/[category]/page.tsx new file mode 100644 index 0000000..cfb9b9f --- /dev/null +++ b/app/[locale]/works/[category]/page.tsx @@ -0,0 +1,10 @@ +import WorksPage from "./[id]/page"; + +interface BlankWorksPageProps { + params: { + category: string; + }; +} +export default function BlankWorksPage(props: BlankWorksPageProps) { + return ; +}