Routing

How to add page to sidebar ?

Add same path as same as you put the page into pages folder.
                            
// ------------------------------------------------------------------------
// File: /src/app/(DashboardLayout)/layout/vertical/sidebar/MenuItems.ts
// ------------------------------------------------------------------------

const Menuitems: MenuitemsType[] = [
    {
        id: uniqueId(),
        title: "General",
        icon: "solar:screencast-2-linear",
        href: "/",
    },
    {
        id: uniqueId(),
        title: "Classic",
        icon: "solar:atom-linear",
        href: "/dashboards/classic",
    },
    {
        id: uniqueId(),
        title: "Analytical",
        icon: "solar:box-minimalistic-linear",
        href: "/dashboards/analytical",
    },
]