pages.js
4.32 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
export default [
{
title: 'Pages',
icon: { icon: 'ri-file-list-2-line' },
children: [
{
title: 'User Profile',
icon: { icon: 'ri-account-circle-line' },
to: { name: 'pages-user-profile-tab', params: { tab: 'profile' } },
},
{
title: 'Account Settings',
icon: { icon: 'ri-settings-2-line' },
to: { name: 'pages-account-settings-tab', params: { tab: 'account' } },
},
{ title: 'Pricing', icon: { icon: 'ri-money-dollar-circle-line' }, to: 'pages-pricing' },
{ title: 'FAQ', icon: { icon: 'ri-question-line' }, to: 'pages-faq' },
{
title: 'Misc',
icon: { icon: 'ri-file-line' },
children: [
{ title: 'Coming Soon', to: 'pages-misc-coming-soon' },
{ 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-lock-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 Pages',
icon: { icon: 'ri-more-fill' },
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-file-copy-line' }, to: 'pages-dialog-examples' },
{
title: 'Front Pages',
icon: { icon: 'ri-checkbox-multiple-blank-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',
},
],
},
],
},
]