refactor: rename 'Konten' to 'Artikel' and add submenu for article management

This commit is contained in:
Ardeman
2025-03-09 14:54:18 +08:00
parent e7eda086e4
commit 9f6c07c3de
6 changed files with 19 additions and 9 deletions
+12 -1
View File
@@ -30,7 +30,7 @@ export const MENU: TMenu[] = [
icon: DocumentIcon,
},
{
title: 'Konten',
title: 'Artikel',
url: '/lg-admin/contents',
icon: ChatIcon,
},
@@ -62,3 +62,14 @@ export const MENU: TMenu[] = [
],
},
]
export const SUB_MENU = [
{
title: 'Buat Artikel',
path: '/lg-admin/contents/create',
},
{
title: 'Update Artikel',
path: '/lg-admin/contents/update',
},
]