import React from "react"; import CIcon from "@coreui/icons-react"; import { cibMaterialDesign, cilAddressBook, cilAppsSettings, cilBrush, cilCart, cilCat, cilClipboard, cilCommand, cilCompress, cilContact, cilImage, cilLanguage, cilLoopCircular, cilMedicalCross, cilNotes, cilSpeedometer, cilSwapHorizontal, cilTablet, cilTennisBall, cilText, cilUser, cilAlarm, cilFeaturedPlaylist, cilLocationPin, cilSettings, cilMoney, cilBell, } from "@coreui/icons"; import { CNavGroup, CNavItem, CNavTitle, CTabContent } from "@coreui/react"; const _nav = [ { component: CNavItem, name: "Dashboard", to: "/dashboard", icon: , group: "", }, { component: CNavGroup, name: "Product Management", icon: , group: "", items: [ { component: CNavItem, name: "Categories", icon: , to: "/categories", group: "Product Management", }, { component: CNavItem, name: "Brands", icon: , to: "/brands", group: "Product Management", }, { component: CNavItem, name: "Products", icon: , to: "/products", group: "Product Management", }, ], }, { component: CNavItem, name: "ProductManual", icon: , to: "/product-manual", group: "Product Management", }, { component: CNavItem, name: "Principal Distributor", icon: , to: "/principal-distributor", group: "PrincipalDistributor", }, { component: CNavItem, name: "Sales Coordinator", icon: , to: "/salescoordinators", group: "SalesCoordinator", }, { component: CNavItem, name: "Territory Managers", icon: , to: "/territorymanagers", group: "TerritoryManager", }, { component: CNavItem, name: "Retail Distributor", icon: , to: "/retail-distributor", group: "RetailDistributor", }, { component: CNavItem, name: "Attendance", icon: , to: "/attendance/today", group: "Attendance", }, { component: CNavItem, name: "Leaves", icon: , to: "/leaves/today", group: "Leaves", }, { component: CNavItem, name: "Tasks", icon: , to: "/task/today", group: "Tasks", }, { component: CNavItem, name: "Inventory Data", icon: , to: "/inventory", group: "Inventory", }, { component: CNavGroup, name: "Orders", icon: , group: "", items: [ { component: CNavItem, name: "New", icon: , to: "/orders/new", group: "Orders", }, { component: CNavItem, name: "Pending", icon: , to: "/orders/Pending", group: "Orders", }, // { // component: CNavItem, // name: "Paid", // icon: , // to: "/orders/returned", // }, { component: CNavItem, name: "Processing", icon: , to: "/orders/processing", group: "Orders", }, { component: CNavItem, name: "Dispatched", icon: , to: "/orders/dispatched", group: "Orders", }, { component: CNavItem, name: "Delivered", icon: , to: "/orders/delivered", group: "Orders", }, { component: CNavItem, name: "Cancelled", icon: , to: "/orders/cancelled", group: "Orders", }, // { // component: CNavItem, // name: "In Store Cash Orders", // icon: , // to: "/inStoreCashOrders/new", // group: "Orders", // }, // { // component: CNavItem, // name: "In Store QRCode Orders", // icon: , // to: "/InStoreQRCodeOrders/new", // group: "Orders", // }, ], }, { component: CNavItem, name: "Announcement", icon: , to: "/announcement", group: "Inventory", }, { component: CNavGroup, name: "Settings", icon: , group: "", items: [ // { // component: CNavItem, // name: "Testimonials", // icon: , // to: "/testimonials", // group: "Website Related", // }, // { // component: CNavItem, // name: "SEO and Analytics", // icon: , // to: "/seo/request/new", // group: "Website Related", // }, // { // component: CNavItem, // name: "Content ", // icon: , // to: "/content", // group: "Settings", // }, // { // component: CNavItem, // name: "Social Media", // icon: , // to: "/socialmedia", // group: "Settings", // }, { component: CNavItem, name: "Currency", icon: , to: "/currency", group: "Settings", }, { component: CNavItem, name: "Application Name", icon: , to: "/application/name", group: "Settings", }, { component: CNavItem, name: "Address", icon: , to: "/address", group: "Settings", }, { component: CNavItem, name: "Logos", icon: , to: "/logo", group: "Settings", }, // { // component: CNavItem, // name: "Copyright Message", // icon: , // to: "/copyright/message", // group: "Settings", // }, ], }, // { // component: CNavGroup, // name: "Configuration", // icon: , // group: "", // items: [ // ], // }, //Affiliate start // { // component: CNavGroup, // name: "Affiliate & Coupons", // icon: , // group: "", // items: [ // { // component: CNavItem, // name: "Coupons", // icon: , // to: "/affiliate/coupons", // group: "Affiliate & Coupons", // }, // { // component: CNavItem, // name: "Affiliates", // icon: , // to: "/affiliate/affiliates", // group: "Affiliate & Coupons", // }, // ], // }, // //Affiliate end //Blog start // { // component: CNavItem, // name: "Blog", // icon: , // to: "/blogs", // group: "Blog", // }, // // Employee // { // component: CNavItem, // name: "Employees & Access", // icon: , // to: "/employee", // group: "Employees & Access", // }, // { // component: CNavGroup, // name: "Blog", // icon: , // items: [ // { // component: CNavItem, // name: "Blog", // icon: , // to: "/blogs", // }, // ], // }, ]; export default _nav;