apps-and-pages.js
5.96 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
export default [
{ heading: 'Apps & Pages' },
{
title: 'Ecommerce',
icon: { icon: 'ri-shopping-bag-3-line' },
children: [
{
title: 'Dashboard',
to: 'apps-ecommerce-dashboard',
},
{
title: 'Product',
children: [
{ title: 'List', to: 'apps-ecommerce-product-list' },
{ title: 'Add', to: 'apps-ecommerce-product-add' },
{ title: 'Category', to: 'apps-ecommerce-product-category-list' },
],
},
{
title: 'Order',
children: [
{ title: 'List', to: 'apps-ecommerce-order-list' },
{ title: 'Details', to: { name: 'apps-ecommerce-order-details-id', params: { id: '9042' } } },
],
},
{
title: 'Customer',
children: [
{ title: 'List', to: 'apps-ecommerce-customer-list' },
{ title: 'Details', to: { name: 'apps-ecommerce-customer-details-id', params: { id: 478426 } } },
],
},
{
title: 'Manage Review',
to: 'apps-ecommerce-manage-review',
},
{
title: 'Referrals',
to: 'apps-ecommerce-referrals',
},
{
title: 'Settings',
to: 'apps-ecommerce-settings',
},
],
},
{
title: 'Academy',
icon: { icon: 'ri-graduation-cap-line' },
children: [
{ title: 'Dashboard', to: 'apps-academy-dashboard' },
{ title: 'My Course', to: 'apps-academy-my-course' },
{ title: 'Course Details', to: 'apps-academy-course-details' },
],
},
{
title: 'Logistics',
icon: { icon: 'ri-car-line' },
children: [
{ title: 'Dashboard', to: 'apps-logistics-dashboard' },
{ title: 'Fleet', to: 'apps-logistics-fleet' },
],
},
{
title: 'Email',
icon: { icon: 'ri-mail-open-line' },
to: 'apps-email',
},
{
title: 'Chat',
icon: { icon: 'ri-wechat-line' },
to: 'apps-chat',
},
{
title: 'Calendar',
icon: { icon: 'ri-calendar-line' },
to: 'apps-calendar',
},
{
title: 'Kanban',
icon: { icon: 'ri-drag-drop-line' },
to: 'apps-kanban',
},
{
title: 'Invoice',
icon: { icon: 'ri-bill-line' },
children: [
{ title: 'List', to: 'apps-invoice-list' },
{ title: 'Preview', to: { name: 'apps-invoice-preview-id', params: { id: '5036' } } },
{ title: 'Edit', to: { name: 'apps-invoice-edit-id', params: { id: '5036' } } },
{ title: 'Add', to: 'apps-invoice-add' },
],
},
{
title: 'User',
icon: { icon: 'ri-user-line' },
children: [
{ title: 'List', to: 'apps-user-list' },
{ title: 'View', to: { name: 'apps-user-view-id', params: { id: 21 } } },
],
},
{
title: 'Roles & Permissions',
icon: { icon: 'ri-lock-2-line' },
children: [
{ title: 'Roles', to: 'apps-roles' },
{ title: 'Permissions', to: 'apps-permissions' },
],
},
{
title: 'Pages',
icon: { icon: 'ri-layout-left-line' },
children: [
{ title: 'User Profile', to: { name: 'pages-user-profile-tab', params: { tab: 'profile' } } },
{ title: 'Account Settings', to: { name: 'pages-account-settings-tab', params: { tab: 'account' } } },
{ title: 'Pricing', to: 'pages-pricing' },
{ title: 'FAQ', to: 'pages-faq' },
{
title: 'Miscellaneous',
children: [
{ title: 'Coming Soon', to: 'pages-misc-coming-soon', target: '_blank' },
{ title: 'Under Maintenance', to: 'pages-misc-under-maintenance', target: '_blank' },
{ title: 'Page Not Found - 404', to: { path: '/pages/misc/not-found' }, target: '_blank' },
{ title: 'Not Authorized - 401', to: { path: '/pages/misc/not-authorized' }, target: '_blank' },
],
},
],
},
{
title: 'Authentication',
icon: { icon: 'ri-shield-keyhole-line' },
children: [
{
title: 'Login',
children: [
{ title: 'Login v1', to: 'pages-authentication-login-v1', target: '_blank' },
{ title: 'Login v2', to: 'pages-authentication-login-v2', target: '_blank' },
],
},
{
title: 'Register',
children: [
{ title: 'Register v1', to: 'pages-authentication-register-v1', target: '_blank' },
{ title: 'Register v2', to: 'pages-authentication-register-v2', target: '_blank' },
{ title: 'Register Multi-Steps', to: 'pages-authentication-register-multi-steps', target: '_blank' },
],
},
{
title: 'Verify Email',
children: [
{ title: 'Verify Email v1', to: 'pages-authentication-verify-email-v1', target: '_blank' },
{ title: 'Verify Email v2', to: 'pages-authentication-verify-email-v2', target: '_blank' },
],
},
{
title: 'Forgot Password',
children: [
{ title: 'Forgot Password v1', to: 'pages-authentication-forgot-password-v1', target: '_blank' },
{ title: 'Forgot Password v2', to: 'pages-authentication-forgot-password-v2', target: '_blank' },
],
},
{
title: 'Reset Password',
children: [
{ title: 'Reset Password v1', to: 'pages-authentication-reset-password-v1', target: '_blank' },
{ title: 'Reset Password v2', to: 'pages-authentication-reset-password-v2', target: '_blank' },
],
},
{
title: 'Two Steps',
children: [
{ title: 'Two Steps v1', to: 'pages-authentication-two-steps-v1', target: '_blank' },
{ title: 'Two Steps v2', to: 'pages-authentication-two-steps-v2', target: '_blank' },
],
},
],
},
{
title: 'Wizard Examples',
icon: { icon: 'ri-git-commit-line' },
children: [
{ title: 'Checkout', to: { name: 'wizard-examples-checkout' } },
{ title: 'Property Listing', to: { name: 'wizard-examples-property-listing' } },
{ title: 'Create Deal', to: { name: 'wizard-examples-create-deal' } },
],
},
{
title: 'Dialog Examples',
icon: { icon: 'ri-tv-2-line' },
to: 'pages-dialog-examples',
},
]