364 lines
7.6 KiB
JavaScript
364 lines
7.6 KiB
JavaScript
import { HiOutlineNewspaper } from "react-icons/hi";
|
|
import {
|
|
TbBrandMedium,
|
|
TbBuildingBank,
|
|
TbChartHistogram,
|
|
TbLayoutDashboard,
|
|
TbReportMoney,
|
|
} from "react-icons/tb";
|
|
import {
|
|
RiAccountBoxLine,
|
|
RiBankLine,
|
|
RiFileUserLine,
|
|
RiMoneyDollarBoxLine,
|
|
} from "react-icons/ri";
|
|
import { RiExchangeBoxLine } from "react-icons/ri";
|
|
import { VscGitPullRequestGoToChanges, VscSymbolClass } from "react-icons/vsc";
|
|
import { FiUsers } from "react-icons/fi";
|
|
import { PiCrown } from "react-icons/pi";
|
|
import { MdOutlineAddChart, MdOutlineAdminPanelSettings } from "react-icons/md";
|
|
import { HiOutlineChartSquareBar } from "react-icons/hi";
|
|
import { TbListDetails } from "react-icons/tb";
|
|
import { TbTransactionDollar } from "react-icons/tb";
|
|
import { TbCalendarDollar } from "react-icons/tb";
|
|
import { TbDeviceDesktopDollar } from "react-icons/tb";
|
|
import { BiMoneyWithdraw } from "react-icons/bi";
|
|
import { GrDocumentUpdate, GrManual } from "react-icons/gr";
|
|
import { MdBrowserUpdated } from "react-icons/md";
|
|
import { AiOutlineUserDelete } from "react-icons/ai";
|
|
import { MdNotificationsNone } from "react-icons/md";
|
|
import { SiAcademia } from "react-icons/si";
|
|
import { LuContact } from "react-icons/lu";
|
|
import { LiaCrownSolid } from "react-icons/lia";
|
|
import { PiCrownDuotone } from "react-icons/pi";
|
|
import { HiOutlineBanknotes } from "react-icons/hi2";
|
|
import { AtSignIcon } from "@chakra-ui/icons";
|
|
|
|
export const nav = [
|
|
{
|
|
title: "Dashboard",
|
|
type: "single",
|
|
path: "/",
|
|
Icon: TbLayoutDashboard,
|
|
},
|
|
{
|
|
title: "MASTER MENU",
|
|
type: "title",
|
|
},
|
|
{
|
|
title: "Master",
|
|
submenu: [
|
|
{
|
|
title: "Sponsor Master",
|
|
path: "/sponser",
|
|
icon: RiMoneyDollarBoxLine,
|
|
},
|
|
{
|
|
title: "Investment Type",
|
|
path: "/investment-type",
|
|
icon: VscSymbolClass,
|
|
},
|
|
{
|
|
title: "Exchange Rate",
|
|
path: "/exchange-rate",
|
|
icon: RiExchangeBoxLine,
|
|
},
|
|
],
|
|
type: "accordion",
|
|
Icon: TbBrandMedium,
|
|
},
|
|
{
|
|
title: "IO Management",
|
|
submenu: [
|
|
{
|
|
title: "Create IO",
|
|
path: "/create-io",
|
|
icon: MdOutlineAddChart,
|
|
},
|
|
{
|
|
title: "View IO",
|
|
path: "/view-io",
|
|
icon: HiOutlineChartSquareBar,
|
|
},
|
|
],
|
|
type: "accordion",
|
|
Icon: TbDeviceDesktopDollar,
|
|
},
|
|
{
|
|
title: "Investor Management",
|
|
submenu: [
|
|
{
|
|
title: "Investor Details",
|
|
path: "/investor-details",
|
|
icon: TbListDetails,
|
|
},
|
|
// {
|
|
// title: "Investor Transactions",
|
|
// path: "/investor-transactions",
|
|
// icon: TbTransactionDollar,
|
|
// },
|
|
],
|
|
type: "accordion",
|
|
Icon: TbCalendarDollar,
|
|
},
|
|
{
|
|
title: "INVESTORS REQUEST",
|
|
type: "title",
|
|
},
|
|
{
|
|
title: "Fawateer Deposit",
|
|
submenu: [
|
|
{
|
|
title: "Approver Request",
|
|
path: "/fawateer",
|
|
icon: RiMoneyDollarBoxLine,
|
|
},
|
|
{
|
|
title: "View History",
|
|
path: "/fawateer-history",
|
|
icon: RiExchangeBoxLine,
|
|
},
|
|
],
|
|
type: "accordion",
|
|
Icon: HiOutlineBanknotes,
|
|
},
|
|
{
|
|
title: "Bank Deposit",
|
|
submenu: [
|
|
{
|
|
title: "Pending Request",
|
|
path: "/deposit-request",
|
|
icon: RiMoneyDollarBoxLine,
|
|
},
|
|
{
|
|
title: "View History",
|
|
path: "/deposit-history",
|
|
icon: RiExchangeBoxLine,
|
|
},
|
|
],
|
|
type: "accordion",
|
|
Icon: TbBuildingBank,
|
|
},
|
|
{
|
|
title: "Withdrawal",
|
|
submenu: [
|
|
{
|
|
title: "Pending Request",
|
|
path: "/withdraw-request",
|
|
icon: RiMoneyDollarBoxLine,
|
|
},
|
|
{
|
|
title: "View History",
|
|
path: "/withdraw-history",
|
|
icon: RiExchangeBoxLine,
|
|
},
|
|
],
|
|
type: "accordion",
|
|
Icon: BiMoneyWithdraw,
|
|
},
|
|
// {
|
|
// title: "Investor Upgradation",
|
|
// submenu: [
|
|
// {
|
|
// title: "Pending Request",
|
|
// path: "/investor-request",
|
|
// icon: RiMoneyDollarBoxLine,
|
|
// },
|
|
// {
|
|
// title: "View History",
|
|
// path: "/investor-history",
|
|
// icon: RiExchangeBoxLine,
|
|
// },
|
|
// ],
|
|
// type: "accordion",
|
|
// Icon: MdBrowserUpdated,
|
|
// },
|
|
{
|
|
title: "Account Deletion",
|
|
submenu: [
|
|
{
|
|
title: "Pending Request",
|
|
path: "/deletion-request",
|
|
icon: RiMoneyDollarBoxLine,
|
|
},
|
|
{
|
|
title: "View History",
|
|
path: "/deletion-history",
|
|
icon: RiExchangeBoxLine,
|
|
},
|
|
],
|
|
type: "accordion",
|
|
Icon: AiOutlineUserDelete,
|
|
},
|
|
|
|
|
|
|
|
{
|
|
title: "REVERSAL TRANSACTION",
|
|
type: "title",
|
|
},
|
|
{
|
|
title: "Bank Deposit Request",
|
|
type: "single",
|
|
path: "/bank-deposit-request",
|
|
Icon: RiBankLine,
|
|
},
|
|
{
|
|
title: "Fawateer Deposit",
|
|
type: "single",
|
|
path: "/reversal-fawateer-deposit",
|
|
Icon: HiOutlineBanknotes,
|
|
},
|
|
{
|
|
title: "Account Deletion Request",
|
|
type: "single",
|
|
path: "/account-deletion-request",
|
|
Icon: RiAccountBoxLine,
|
|
},
|
|
|
|
|
|
|
|
{
|
|
title: "MANAGE ADMIN",
|
|
type: "title",
|
|
},
|
|
{
|
|
title: "Admin",
|
|
submenu: [
|
|
{
|
|
title: "Ban / Unban Investor",
|
|
path: "/bank-investor",
|
|
icon: TbReportMoney,
|
|
},
|
|
{
|
|
title: "Academy",
|
|
path: "/academy",
|
|
icon: GrManual,
|
|
},
|
|
{
|
|
title: "Push Notification",
|
|
path: "/notification",
|
|
icon: MdNotificationsNone,
|
|
},
|
|
{
|
|
title: "Email Notification",
|
|
path: "/email",
|
|
icon: AtSignIcon,
|
|
},
|
|
{
|
|
title: "Contact Details",
|
|
path: "/contact",
|
|
icon: LuContact,
|
|
},
|
|
// {
|
|
// title: "Users",
|
|
// path: "/users",
|
|
// icon: RiFileUserLine,
|
|
// },
|
|
{
|
|
title: "Bank Details",
|
|
path: "/bank-details",
|
|
icon: RiBankLine,
|
|
},
|
|
{
|
|
title: "Sub Admin",
|
|
path: "/subadmin",
|
|
icon: RiFileUserLine,
|
|
},
|
|
],
|
|
type: "accordion",
|
|
Icon: MdOutlineAdminPanelSettings,
|
|
},
|
|
// {
|
|
// title: "Single Link",
|
|
// type: "single",
|
|
// path: "/logout",
|
|
// Icon: HiOutlineNewspaper,
|
|
// },
|
|
];
|
|
|
|
export const nestedNav = [
|
|
{
|
|
title: "MAIN MENU",
|
|
type: "accordion",
|
|
accArray: [
|
|
{
|
|
title: "Master",
|
|
submenu: [
|
|
{
|
|
title: "Sponser",
|
|
path: "/sponser",
|
|
icon: RiMoneyDollarBoxLine,
|
|
},
|
|
{
|
|
title: "Exchange rate",
|
|
path: "/exchange-rate",
|
|
icon: RiExchangeBoxLine,
|
|
},
|
|
{
|
|
title: "Asset classes",
|
|
path: "/view",
|
|
icon: VscSymbolClass,
|
|
},
|
|
],
|
|
type: "accordion",
|
|
Icon: TbBrandMedium,
|
|
},
|
|
{
|
|
title: "User",
|
|
submenu: [
|
|
{
|
|
title: "Sponser",
|
|
path: "/loop",
|
|
icon: TbBrandMedium,
|
|
},
|
|
{
|
|
title: "Class",
|
|
path: "/class",
|
|
icon: TbBrandMedium,
|
|
},
|
|
{
|
|
title: "View",
|
|
path: "/view",
|
|
icon: TbBrandMedium,
|
|
},
|
|
],
|
|
type: "accordion",
|
|
Icon: HiOutlineNewspaper,
|
|
},
|
|
],
|
|
},
|
|
{
|
|
title: "User",
|
|
submenu: [
|
|
{
|
|
title: "Sponser",
|
|
path: "/loop",
|
|
icon: TbBrandMedium,
|
|
},
|
|
{
|
|
title: "Class",
|
|
path: "/class",
|
|
icon: TbBrandMedium,
|
|
},
|
|
{
|
|
title: "View",
|
|
path: "/view",
|
|
icon: TbBrandMedium,
|
|
},
|
|
],
|
|
type: "accordion",
|
|
Icon: FiUsers,
|
|
},
|
|
{
|
|
title: "SPONSER",
|
|
type: "title",
|
|
},
|
|
{
|
|
title: "Single Link",
|
|
type: "single",
|
|
path: "/",
|
|
Icon: HiOutlineNewspaper,
|
|
},
|
|
];
|