-
Notifications
You must be signed in to change notification settings - Fork 14
/
sidebars.js
102 lines (98 loc) · 2.48 KB
/
sidebars.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
// @ts-check
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
usingZeus: [
'about-zeus',
{
type: 'category',
label: 'Getting Started',
link: {
type: 'generated-index',
},
collapsed: true,
items: [
'for-users/getting-started/before-using-zeus',
'for-users/getting-started/remote-or-embedded',
'for-users/getting-started/tips',
],
},
{
type: 'category',
label: 'Embedded Node',
link: {
type: 'generated-index',
},
collapsed: true,
items: [
'for-users/embedded-node/backup-and-recovery',
'for-users/embedded-node/lightning-onboarding',
'for-users/embedded-node/privacy',
'for-users/embedded-node/open-channel-to-embedded-node',
'for-users/embedded-node/trusted-funding',
'for-users/embedded-node/faq'
],
},
{
type: 'category',
label: 'Remote connections',
link: {
type: 'generated-index',
},
collapsed: true,
items: [
'for-users/remote-connections/umbrel',
'for-users/remote-connections/citadel',
'for-users/remote-connections/raspiblitz',
'for-users/remote-connections/mynode',
'for-users/remote-connections/startos',
'for-users/remote-connections/nodl',
'for-users/remote-connections/btcpay',
'for-users/remote-connections/lndhub',
],
},
{
type: 'category',
label: 'Using ZEUS',
link: {
type: 'generated-index',
},
collapsed: true,
items: [
'for-users/using-zeus/overview','for-users/using-zeus/home', 'for-users/using-zeus/accounts', 'for-users/using-zeus/profiles',
'for-users/using-zeus/channels',
],
}
],
lsp: [
'lsp/intro',
'lsp/wrapped-invoices',
'lsp/fees',
{
type: 'category',
label: 'APIs',
link: {
type: 'generated-index',
},
collapsed: true,
items: [
'lsp/api/flow',
'lsp/api/lsps1'
],
},
'lsp/channel-differences',
],
lightningAddress: [
'lightning-address/intro',
'lightning-address/fees',
],
pos: [
'pos/overview',
'pos/setup',
'pos/checkout',
],
contribute: [
'contribute/how-you-can-contribute', 'contribute/code', 'contribute/design', 'contribute/write', 'contribute/translate',
'contribute/donate', 'contribute/other',
],
};
module.exports = sidebars;