dashboard.js
1.16 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
export default [
{
title: 'Dashboards',
icon: { icon: 'ri-home-smile-line' },
children: [
{
title: 'CRM',
to: 'dashboards-crm',
},
{
title: 'Analytics',
to: 'dashboards-analytics',
},
{
title: 'eCommerce',
to: 'dashboards-ecommerce',
},
{
title: 'Academy',
to: 'dashboards-academy',
},
{
title: 'Logistics',
to: 'dashboards-logistics',
},
],
badgeContent: '5',
badgeClass: 'bg-error',
},
{
title: 'Front Pages',
icon: { icon: 'ri-file-copy-line' },
children: [
{
title: 'Landing',
to: 'front-pages-landing-page',
target: '_blank',
},
{
title: 'Pricing',
to: 'front-pages-pricing',
target: '_blank',
},
{
title: 'Payment',
to: 'front-pages-payment',
target: '_blank',
},
{
title: 'Checkout',
to: 'front-pages-checkout',
target: '_blank',
},
{
title: 'Help Center',
to: 'front-pages-help-center',
target: '_blank',
},
],
},
]