dashboard.ts
896 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
export default [
{
title: 'Dashboards',
icon: { icon: 'ri-home-smile-line' },
children: [
{
title: 'CRM',
to: 'dashboards-crm',
icon: { icon: 'ri-computer-line' },
},
{
title: 'Naputpro',
to: { name: 'naputpro-beranda-tab', params: { tab: 'profile' } },
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' },
},
],
},
]