Files
expert-front/src/core/data/sidebarMenu.jsx
2023-07-19 10:10:23 +03:30

61 lines
1.7 KiB
JavaScript

import SpaceDashboardIcon from "@mui/icons-material/SpaceDashboard";
import DirectionsCarFilledIcon from "@mui/icons-material/DirectionsCarFilled";
import AirlineSeatReclineNormalIcon from "@mui/icons-material/AirlineSeatReclineNormal";
import DirectionsRailwayIcon from "@mui/icons-material/DirectionsRailway";
import AssignmentIndIcon from "@mui/icons-material/AssignmentInd";
import DesktopWindowsIcon from "@mui/icons-material/DesktopWindows";
const sidebarMenu = [
[
{
key: "sidebar.dashboard",
type: "page",
route: "/dashboard",
icon: <SpaceDashboardIcon />,
selected: false,
},
{
key: "sidebar.passenger-office",
type: "page",
route: "/dashboard/passenger-office",
icon: <AirlineSeatReclineNormalIcon />,
selected: false,
role: "passenger-office",
},
{
key: "sidebar.machinary-office",
type: "page",
route: "/dashboard/machinary-office",
icon: <DirectionsCarFilledIcon />,
selected: false,
role: "machinary-office",
},
{
key: "sidebar.passenger-boss",
type: "page",
route: "/dashboard/passenger-boss",
icon: <AssignmentIndIcon />,
selected: false,
role: "passenger-boss",
},
{
key: "sidebar.transportation-assistance",
type: "page",
route: "/dashboard/transportation-assistance",
icon: <DirectionsRailwayIcon />,
selected: false,
role: "transportation-assistance",
},
{
key: "sidebar.province-manager",
type: "page",
route: "/dashboard/province-manager",
icon: <DesktopWindowsIcon />,
selected: false,
role: "province-manager",
},
],
];
export default sidebarMenu;