Skip to content

Commit

Permalink
fix: add work category listing root page
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinstadler committed Jan 8, 2025
1 parent 7b2887c commit a49c9f9
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions app/[locale]/works/[category]/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import WorksPage from "./[id]/page";

interface BlankWorksPageProps {
params: {
category: string;
};
}
export default function BlankWorksPage(props: BlankWorksPageProps) {
return <WorksPage params={props.params} />;
}

0 comments on commit a49c9f9

Please sign in to comment.