From b86dd2a8213eb99728a1619f6c2d2c357d1dc64a Mon Sep 17 00:00:00 2001 From: sianida26 Date: Thu, 15 Feb 2024 00:04:17 +0700 Subject: [PATCH] Add sidebar menu --- src/modules/dashboard/data/sidebarMenus.ts | 34 ++++++++++------------ 1 file changed, 16 insertions(+), 18 deletions(-) diff --git a/src/modules/dashboard/data/sidebarMenus.ts b/src/modules/dashboard/data/sidebarMenus.ts index 913e844..6a969ac 100644 --- a/src/modules/dashboard/data/sidebarMenus.ts +++ b/src/modules/dashboard/data/sidebarMenus.ts @@ -25,25 +25,23 @@ const sidebarMenus: SidebarMenu[] = [ ], }, { - label: "Blog", - icon: "TbNotebook", - color: "green", + label: "Reseller Office 365", + icon: "TbBuildingStore", + color: "red", + allowedPermissions: ["*"], children: [ - { label: "Posts", link: "#" }, - { label: "Categories", link: "#" }, - { label: "Tags", link: "#" }, - ], - }, - { - label: "Products", - icon: "TbShoppingBag", - color: "cyan", - }, - { - label: "Banners", - icon: "TbPhotoFilled", - color: "indigo", - }, + { + label: "Request Link", + link: "/reseller-office-365/request", + allowedRoles: ["*"] + }, + { + label: "Respond Request Link", + link: "#", + allowedRoles: ["*"] + } + ] + } ]; export default sidebarMenus;