Routing
1. How to add page to verticle sidebar ?
                            
// ----------------------------------------------------
// File: /components/lc/Full/vertical-sidebar/sidebarItem.ts
// ----------------------------------------------------
const sidebarItem: menu[] = [
  { header: "Home" },
  {
    title: "Dashboard",
    icon: "screencast-2-linear",
    BgColor: "primary",
    to: "/dashboards/dashboard1",
  },
  {
    title: "Dashboard 2",
    icon: "chart-line-duotone",
    BgColor: "success",
    to: "/dashboards/dashboard2",
  },
]
                    
                
            2. How to add page to horizontal sidebar ?
                            
// ------------------------------------------------------------
// File: /components/lc/Full/horizontal-sidebar/horizontalItems.ts
// ------------------------------------------------------------
const horizontalItems: menu[] = [
  {
    title: "Dashboards",
    icon: "screencast-2-linear",
    BgColor: "primary",
    to: "#",
    children: [
      {
        title: "Dashboard",
        to: "/dashboards/dashboard1",
      },
      {
        title: "Dashboard 2",
        to: "/dashboards/dashboard2",
      },
    ],
  },
]