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;