Navbar menu versi 3

Admin Layout
- app/(application)/admin/_layout.tsx

Docs
- docs/prompt-for-qwen-code.md

New Component
- components/Drawer/NavbarMenu_V3.tsx

### No Issue'
This commit is contained in:
2026-02-12 14:55:05 +08:00
parent e030b8f486
commit 6d71c3a86f
3 changed files with 916 additions and 14 deletions

View File

@@ -9,6 +9,7 @@ import {
import DrawerAdmin from "@/components/Drawer/DrawerAdmin";
import NavbarMenu from "@/components/Drawer/NavbarMenu";
import NavbarMenu_V2 from "@/components/Drawer/NavbarMenu_V2";
import NavbarMenu_V3 from "@/components/Drawer/NavbarMenu_V3";
import { AccentColor, MainColor } from "@/constants/color-palet";
import {
ICON_SIZE_MEDIUM,
@@ -154,7 +155,16 @@ export default function AdminLayout() {
onClose={() => setOpenDrawerNavbar(false)}
/> */}
<NavbarMenu_V2
{/* <NavbarMenu_V2
items={
user?.masterUserRoleId === "2"
? adminListMenu_V2
: superAdminListMenu_V2
}
onClose={() => setOpenDrawerNavbar(false)}
/> */}
<NavbarMenu_V3
items={
user?.masterUserRoleId === "2"
? adminListMenu_V2