Routing

How to add page to sidebar ?

Add same path as same as you put the page into pages folder.
                            
// ------------------------------------------------------------------------
// File: src/app/(DashboardLayout)/layouts/vertical/sidebar/Menuitems.ts
// ------------------------------------------------------------------------
    
const Menuitems = MenuitemsType[] = [
    {
        id: uniqueId(),
        title: 'Dashboard 1',
        icon: "screencast-2-line-duotone",
        href: '/',
        bgColor: 'primary',
    },
    {
        id: uniqueId(),
        title: 'Dashboard 2',
        icon: "chart-line-duotone",
        href: '/dashboards/dashboard2',
        bgColor: 'secondary',
    },
]