34 lines
733 B
JavaScript
34 lines
733 B
JavaScript
export default [
|
|
{
|
|
title: 'Dashboards',
|
|
icon: { icon: 'ri-home-smile-line' },
|
|
children: [
|
|
{
|
|
title: 'CRM',
|
|
to: 'dashboards-crm',
|
|
icon: { icon: 'ri-computer-line' },
|
|
},
|
|
{
|
|
title: 'Analytics',
|
|
to: 'dashboards-analytics',
|
|
icon: { icon: 'ri-bar-chart-line' },
|
|
},
|
|
{
|
|
title: 'eCommerce',
|
|
to: 'dashboards-ecommerce',
|
|
icon: { icon: 'ri-shopping-cart-2-line' },
|
|
},
|
|
{
|
|
title: 'Academy',
|
|
to: 'dashboards-academy',
|
|
icon: { icon: 'ri-book-open-line' },
|
|
},
|
|
{
|
|
title: 'Logistics',
|
|
to: 'dashboards-logistics',
|
|
icon: { icon: 'ri-truck-line' },
|
|
},
|
|
],
|
|
},
|
|
]
|