Routing
How to add page to sidebar ?
Add same path as same as you put the page into pages folder.
// ------------------------------------------------------------------------
// File: src/layouts/full/vertical/sidebar/Sidebaritems.ts
// ------------------------------------------------------------------------
const SidebarContent: MenuItem[] = [
{
id: 1,
name: "Dashboard",
items: [
{
heading: "Dashboards",
children: [
{
name: "eCommerce",
icon: "solar:widget-add-line-duotone",
id: uniqueId(),
url: "/",
},
{
name: "Analytics",
icon: "solar:chart-line-duotone",
id: uniqueId(),
url: "/dashboards/analytics",
},
{
name: "CRM",
icon: "solar:layers-line-duotone",
id: uniqueId(),
url: "/dashboards/crm",
},
],