feat(kegiatan-desa): add full CRUD frontend + public detail page - bump to 0.1.47

- API: add GET /:id endpoint (findUnique) for KegiatanDesa
- Admin CMS: add pages for list-kegiatan-desa and kategori-kegiatan-desa (list, create, detail, edit)
- Public: add detail page at /desa/kegiatan-desa/[kategori]/[id]
- Refactor: move KegiatanCard to _com to fix Next.js page export constraint
- Nav: register kegiatan-desa in navbar and admin page list

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-30 14:27:28 +08:00
parent 23c955597e
commit e0a5177257
21 changed files with 2638 additions and 4 deletions

View File

@@ -118,6 +118,11 @@ export const devBar = [
id: "Desa_7",
name: "Penghargaan",
path: "/admin/desa/penghargaan"
},
{
id: "Desa_8",
name: "Kegiatan Desa",
path: "/admin/desa/kegiatan-desa/list-kegiatan-desa"
}
]
@@ -549,6 +554,11 @@ export const navBar = [
id: "Desa_7",
name: "Penghargaan",
path: "/admin/desa/penghargaan"
},
{
id: "Desa_8",
name: "Kegiatan Desa",
path: "/admin/desa/kegiatan-desa/list-kegiatan-desa"
}
]
@@ -995,6 +1005,11 @@ export const role1 = [
id: "Desa_7",
name: "Penghargaan",
path: "/admin/desa/penghargaan"
},
{
id: "Desa_8",
name: "Kegiatan Desa",
path: "/admin/desa/kegiatan-desa/list-kegiatan-desa"
}
]