Routing
How to add page to sidebar ?
// ----------------------------------------------------
// File: /components/layout/full/vertical-sidebar/sidebarItem.ts
// ----------------------------------------------------
const sidebarItem: menu[] = [
{ header: 'Home' },
{
title: 'Dashboard',
icon: 'widget-add-line-duotone',
to: '/'
},
{ header: 'utilities' },
{
title: 'Typography',
icon: 'text-circle-outline',
to: '/ui/typography'
},
{
title: 'Shadow',
icon: 'watch-square-minimalistic-charge-line-duotone',
to: '/ui/shadow'
},
]