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' }, { title: "Manage Users", path: "/register-users", Icon: BiUserPin, type:'multiple', children: [ { title: "Register Users", path: "/register-users", Icon: GoDotFill, }, { title: "Deactivated Accounts", path: "/deactivated-accounts", Icon: GoDotFill, }, ], }, { title: "Manage Post", path: "/manage-post", Icon: HiOutlinePencilSquare, type:'single' }, { title: "Manage Sub-Admin", path: "/sub-admin", Icon: BiUser, type:'single' }, { title: "Manage Jobs", path: "/manage-jobs", Icon: LuBriefcaseBusiness, type:'single' }, { title: "Manage Groups", path: "/manage-groups", Icon: PiUsersThree, type:'single' }, { title: "Manage Contact Us", path: "/manage-contact", Icon: MdHeadsetMic , type:'single' }, { title: "Manage CMS", path: "/faq", Icon: AiOutlineFileText, type:'multiple', children: [ { title: "FAQs", path: "/faq", Icon: GoDotFill, }, { title: "About Us", path: "/about-us", Icon: GoDotFill, }, { title: "Privacy Policy", path: "/privacy-policy", Icon: GoDotFill, }, { title: "Terms And Conditions", path: "/terms-conditions", Icon: GoDotFill, }, { title: "Privacy", path: "/privacy", Icon: GoDotFill, }, ], }, { title: "My Profile", path: "/profile", Icon: BsPersonBadge, type:'single' }, { title: "Master Module", path: "/agency-master", Icon: BsBoxes, type:'multiple', children: [ { title: "Agency Master", path: "/agency-master", Icon: GoDotFill, }, { title: "Template Master", path: "/template-master", Icon: GoDotFill, }, { title: "Job Type", path: "/job-type", Icon: GoDotFill, }, { title: "Workspace Mode", path: "/workspace-mode", Icon: GoDotFill, }, { title: "Country", path: "/country", Icon: GoDotFill, }, { title: "Job Status", path: "/job-status", Icon: GoDotFill, }, ], }, ];