mirror of
https://github.com/WDI-Ideas/rubix-admin-panel.git
synced 2026-04-28 00:35:51 +00:00
57 lines
1.1 KiB
JavaScript
57 lines
1.1 KiB
JavaScript
import { FaHome, FaTable } from "react-icons/fa";
|
|
import { FiHome } from "react-icons/fi";
|
|
import { RiBloggerLine } from "react-icons/ri";
|
|
import { LuVideo } from "react-icons/lu";
|
|
import { HiOutlineNewspaper } from "react-icons/hi";
|
|
import { IoMdPaper } from "react-icons/io";
|
|
import { MdOutlineEvent } from "react-icons/md";
|
|
import { CgCommunity } from "react-icons/cg";
|
|
import { AiOutlineIdcard } from "react-icons/ai";
|
|
|
|
export const nav = [
|
|
{
|
|
title: "Home",
|
|
path: "/",
|
|
Icon: FiHome,
|
|
},
|
|
{
|
|
title: "CONTENT MANAGEMENT",
|
|
path: null,
|
|
},
|
|
{
|
|
title: "Banners",
|
|
path: "/banner",
|
|
Icon: AiOutlineIdcard,
|
|
},
|
|
{
|
|
title: "Blogs",
|
|
path: "/blogs-articles",
|
|
Icon: RiBloggerLine,
|
|
},
|
|
{
|
|
title: "Videos",
|
|
path: "/videos",
|
|
Icon: LuVideo,
|
|
},
|
|
{
|
|
title: "News",
|
|
path: "/news",
|
|
Icon: HiOutlineNewspaper,
|
|
},
|
|
{
|
|
title: "Events",
|
|
path: "/events",
|
|
Icon: MdOutlineEvent,
|
|
},
|
|
{
|
|
title: "Whitepaper",
|
|
path: "/whitepaper",
|
|
Icon: IoMdPaper,
|
|
},
|
|
{
|
|
title: "Community",
|
|
path: "/community",
|
|
Icon: CgCommunity,
|
|
},
|
|
];
|