forked from chain4energy/c4e-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.js
192 lines (190 loc) · 4.86 KB
/
config.js
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
module.exports = {
theme: 'cosmos',
title: 'C4E Documentation',
locales: {
'/': {
lang: 'en-US'
},
},
base: process.env.VUEPRESS_BASE || '/',
themeConfig: {
repo: 'cosmos/ethermint',
docsRepo: 'cosmos/ethermint',
docsBranch: 'development',
docsDir: 'docs',
editLinks: true,
custom: true,
logo: {
src: '/logo.svg',
},
algolia: {
id: 'BH4D9OD16A',
key: 'c5da4dd3636828292e3c908a0db39688',
index: 'ethermint'
},
topbar: {
banner: true
},
sidebar: {
auto: false,
nav: [
{
title: 'User guide',
children: [
{
title: 'Introduction',
directory: true,
path: '/usersGuide/introduction',
},
{
title: 'Wallet Basics',
directory: false,
path: '/usersGuide/walletBasics',
},
{
title: 'Registration',
directory: true,
path: '/usersGuide/registration',
},
{
title: 'Authorisation',
directory: false,
path: '/usersGuide/auth',
},
{
title: 'Validators',
directory: true,
path: '/usersGuide/validators',
},
{
title: 'Governance',
directory: false,
path: '/usersGuide/governance',
},
]
},
{
title: 'Validators Guide',
children: [
{
title: 'strategic reserve delegation program',
directory: true,
path: '/validatorsGuide/strategReserveDelegationProgram',
},
{
title: 'Start testnet',
directory: true,
path: '/validatorsGuide/Starttestnet',
},
{
title: 'Genesis Fields',
directory: true,
path: '/validatorsGuide/genesisFields',
},
{
title: 'Start mainnet',
directory: true,
path: '/validatorsGuide/mainnet',
},
{
title: 'Modules',
directory: true,
path: '/validatorsGuide/modules',
},
]
},
{
title: 'Our products',
children: [
{
title: 'Billing system',
path: 'https://platform.c4e.io'
},
{
title: 'Wallet',
path: 'https://wallet.c4e.io'
},
{
title: 'explorer',
path: 'https://explorer.c4e.io'
}
]
},
]
},
gutter: {
title: 'Help & Support',
chat: {
title: 'Developer Chat',
text: 'Chat with C4E teams on telegram.',
url: 'https://t.me/+60rmPWzlo3c2YWY8',
bg: 'linear-gradient(103.75deg, #1B1E36 0%, #22253F 100%)',
},
telegram: {
title: 'Telegram Chat',
text: 'Chat with C4E teams on telegram.',
url: 'https://t.me/Chain4Energy_Official',
bg: 'linear-gradient(103.75deg, #1B1E36 0%, #22253F 100%)',
logo: '/logo.svg',
},
github: {
title: 'Found an Issue?',
text: 'Help us improve this page by suggesting edits on GitHub.',
bg: '#F8F9FC'
}
},
footer: {
logo: '/logo.svg',
textLink: {
url: 'https://chain4.energy/'
},
services: [{
service: 'github',
url: 'https://github.com/chain4energy'
},
{
service: 'twitter',
url: 'https://twitter.com/chain4energy'
},
{
service: 'linkedin',
url: 'https://www.linkedin.com/company/chain4energy/'
},
],
smallprint: 'This website is maintained by C4E team',
links: [{
title: 'Documentation',
children: [{
title: 'Cosmos SDK Docs',
url: 'https://docs.cosmos.network'
},
{
title: 'Tendermint Core Docs',
url: 'https://docs.tendermint.com'
}
]
},
{
title: 'Community',
children: [{
title: 'C4E Community',
url: 'https://discord.gg/Chain4Energy'
}
]
},
{
title: 'Contributing',
children: [{
title: 'Contributing to the docs',
url: 'https://github.com/chain4energy/c4e-docs'
},
{
title: 'Source code on GitHub',
url: 'https://github.com/chain4energy/c4e-chain'
}
]
}
]
}
},
};