Routing

How to add page to sidebar ?

                            
// ----------------------------------------------------
// File: /src/app/(DashboardLayout)/layout/vertical/sidebar/Sidebaritems.ts
// ----------------------------------------------------

const SidebarContent: MenuItem[] = [
  {
    heading: "HOME",
    children: [
      {
        name: "Modern",
        icon: "solar:widget-2-linear",
        id: uniqueId(),
        url: "/",
      },
      {
        name: "eCommerce",
        icon: "solar:bag-5-linear",
        id: uniqueId(),
        url: "/dashboards/eCommerce",
      },
      {
        name: "Music",
        icon: "solar:music-note-linear",
        id: uniqueId(),
        url: "/dashboards/music",
      },
      {
        name: "General",
        icon: "solar:chart-linear",
        id: uniqueId(),
        url: "/dashboards/general",
      },
    ],
  },  
]

export default SidebarContent;