import React from 'react' import { RxHamburgerMenu } from "react-icons/rx"; import { MdDashboard, MdSupervisedUserCircle, MdShoppingBag, MdAttachMoney, MdWork, MdAnalytics, MdPeople, MdOutlineSettings, MdHelpCenter } from 'react-icons/md' import MenuLinks from '../page/MenuLink'; import Link from 'next/link'; const menuItems = [ { title: "Pages", list: [ { title: "Dashboard", path: '/admin/dashboard', icon: }, { title: "Users", path: '/dashboard/users', icon: }, { title: "Producst", path: '/dashboard/producst', icon: }, { title: "Transactions", path: '/dashboard/transactions', icon: }, ] }, { title: "Analytics", list: [ { title: "Revenue", path: '/dashboard/revenue', icon: }, { title: "Reports", path: '/dashboard/reports', icon: }, { title: "Teams", path: '/dashboard/teams', icon: }, ] }, { title: "User", list: [ { title: "Settings", path: '/dashboard/settings', icon: }, { title: "Help", path: '/dashboard/help', icon: }, ] }, ] export default function HumasSidebarWrapper() { return ( ) }