feat: add CRUD api and slug page

This commit is contained in:
Riccardo
2024-06-21 00:07:55 +02:00
parent d166c6781c
commit 7e00093af1
4 changed files with 37 additions and 0 deletions

3
app/module/[id]/page.tsx Normal file
View File

@@ -0,0 +1,3 @@
export default function SpecificModule({ params }: { params: { id: string } }) {
return <div>Module {params.id}</div>;
}

3
app/module/page.tsx Normal file
View File

@@ -0,0 +1,3 @@
export default function Module() {
return <div>Modules home</div>;
}