How to add page to sidebar ?
// ----------------------------------------------------
// File: /src/app/(DashboardLayout)/layout/vertical/sidebar/Sidebaritems.ts
// ----------------------------------------------------
const SidebarContent: MenuItem[] = [
{
heading: "HOME",
children: [
{
name: "Dashboard",
icon: "solar:widget-add-line-duotone",
id: uniqueId(),
url: "/",
},
],
},
{
heading: "UTILITIES",
children: [
{
name: "Typography",
icon: "solar:text-circle-outline",
id: uniqueId(),
url: "/ui/typography",
},
{
name: "Table",
icon: "solar:bedside-table-3-linear",
id: uniqueId(),
url: "/ui/table",
},
};
]
export default SidebarContent;