33 lines
1.7 KiB
TypeScript
33 lines
1.7 KiB
TypeScript
import HomeIcon from "@mui/icons-material/Home";
|
|
import AccountBalanceWalletIcon from "@mui/icons-material/AccountBalanceWallet";
|
|
import CheckCircleIcon from "@mui/icons-material/CheckCircle";
|
|
import SearchIcon from "@mui/icons-material/Search";
|
|
import VerifiedUserIcon from "@mui/icons-material/VerifiedUser";
|
|
import PeopleIcon from "@mui/icons-material/People";
|
|
import GavelIcon from "@mui/icons-material/Gavel";
|
|
import HubIcon from "@mui/icons-material/Hub";
|
|
import AdminPanelSettingsIcon from "@mui/icons-material/AdminPanelSettings";
|
|
import InsightsIcon from "@mui/icons-material/Insights";
|
|
import { ISidebarLink } from "@/interfaces/SidebarLink.interfaces";
|
|
|
|
export const SIDEBAR_LINKS: ISidebarLink[] = [
|
|
{ title: "Home", path: "/dashboard", icon: HomeIcon },
|
|
{
|
|
title: "Transaction",
|
|
path: "/dashboard/transactions",
|
|
icon: AccountBalanceWalletIcon,
|
|
},
|
|
{ title: "Approve", path: "/dashboard/approve", icon: CheckCircleIcon },
|
|
{ title: "Investigate", path: "/dashboard/investigate", icon: SearchIcon },
|
|
{ title: "KYC", path: "/kyc", icon: VerifiedUserIcon },
|
|
{ title: "User Accounts", path: "/user-accounts", icon: PeopleIcon },
|
|
// { title: 'Analytics', path: '/analytics', icon: BarChartIcon },
|
|
{ title: "Rules", path: "/rules", icon: GavelIcon },
|
|
{ title: "Rules Hub", path: "/rules-hub", icon: HubIcon },
|
|
{ title: "Admin", path: "/admin", icon: AdminPanelSettingsIcon },
|
|
{ title: "Account IQ", path: "/account-iq", icon: InsightsIcon },
|
|
// { title: 'Documentation', path: '/documentation', icon: DescriptionIcon },
|
|
// { title: 'Support', path: '/support', icon: SupportAgentIcon },
|
|
// { title: 'System Status', path: '/system-status', icon: WarningAmberIcon },
|
|
];
|