import { LuBriefcaseBusiness } from "react-icons/lu"; import { MdHeadsetMic, MdOutlineDashboard } from "react-icons/md"; import { GoDotFill } from "react-icons/go"; import { HiOutlinePencilSquare } from "react-icons/hi2"; import { BiUser, BiUserPin } from "react-icons/bi"; import { PiUsersThree } from "react-icons/pi"; import { BsBoxes, BsPersonBadge } from "react-icons/bs"; import { AiOutlineFileText } from "react-icons/ai"; export const nav = [ { title: "Dashboard", path: "/", Icon: MdOutlineDashboard, type: 'single', resourceTitle: 'Dashboard' }, { title: "Manage Users", initPath: "/manage-users", Icon: BiUserPin, type: 'multiple', resourceTitle: 'Manage Users', children: [ { title: "Register Users", path: "/manage-users/register-users", Icon: GoDotFill, }, { title: "Deactivated Accounts", path: "/manage-users/deactivated-accounts", Icon: GoDotFill, }, ], }, { title: "Manage Post", path: "/manage-post", Icon: HiOutlinePencilSquare, type: 'single', resourceTitle: 'Manage Post' }, { title: "Manage Sub-Admin", path: "/sub-admin", Icon: BiUser, type: 'single', resourceTitle: 'Manage Subadmin' }, { title: "Manage Jobs", path: "/manage-jobs", Icon: LuBriefcaseBusiness, type: 'single', resourceTitle: 'Manage Jobs' }, { title: "Manage Groups", path: "/manage-groups", Icon: PiUsersThree, type: 'single', resourceTitle: 'Manage Groups' }, { title: "Manage Contact Us", path: "/manage-contact", Icon: MdHeadsetMic, type: 'single', resourceTitle: 'Manage Contact Us' }, { title: "Manage CMS", initPath: "/manage-cms", Icon: AiOutlineFileText, type: 'multiple', resourceTitle: 'Manage CMS', children: [ { title: "FAQs", path: "/manage-cms/faq", Icon: GoDotFill, }, { title: "About Us", path: "/manage-cms/about-us", Icon: GoDotFill, }, { title: "Privacy Policy", path: "/manage-cms/privacy-policy", Icon: GoDotFill, }, { title: "Terms And Conditions", path: "/manage-cms/terms-conditions", Icon: GoDotFill, }, // { // title: "Privacy", // path: "/manage-cms/privacy", // Icon: GoDotFill, // }, ], }, { title: "My Profile", path: "/profile", Icon: BsPersonBadge, type: 'single', resourceTitle: 'My Profile' }, { title: "Master Module", initPath: "/master-module", Icon: BsBoxes, type: 'multiple', resourceTitle: 'Master Module', children: [ { title: "Agency Master", path: "/master-module/agency-master", Icon: GoDotFill, }, { title: "Template Master", path: "/master-module/template-master", Icon: GoDotFill, }, { title: "Job Type", path: "/master-module/job-type", Icon: GoDotFill, }, { title: "Workspace Mode", path: "/master-module/workspace-mode", Icon: GoDotFill, }, { title: "Country", path: "/master-module/country", Icon: GoDotFill, }, { title: "Job Status", path: "/master-module/job-status", Icon: GoDotFill, }, { title: "Industry Master", path: "/master-module/industry-master", Icon: GoDotFill, }, { title: "Department Master", path: "/master-module/department-master", Icon: GoDotFill, }, ], }, ];