forked from 0glabs/0g-doc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sidebars.ts
125 lines (121 loc) · 3.06 KB
/
sidebars.ts
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
import type { SidebarsConfig } from '@docusaurus/plugin-content-docs';
const sidebars: SidebarsConfig = {
docs: [
'preface',
{
type: 'category',
label: '0G Overview',
className: 'sidebar-category intro',
link: {
type: 'doc',
id: 'intro',
},
items: [
'og-storage',
{
type: 'category',
label: '0G DA',
items: [
'da/og-da',
'da/og-da-deep-dive',
],
},
'og-serving',
'og-chain',
],
},
{
type: 'category',
label: 'Run a Node',
className: 'sidebar-category run-node',
items: [
'run-a-node/overview',
'run-a-node/testnet-information',
'run-a-node/storage-node',
'run-a-node/da-node',
'run-a-node/validator-node',
'run-a-node/community-docker-repo',
],
},
{
type: 'category',
label: 'Build with 0G',
className: 'sidebar-category build-with-0g',
items: [
'build-with-0g/storage-sdk',
'build-with-0g/storage-cli',
'build-with-0g/da-integration',
{
type: 'category',
label: 'Rollups and Appchains',
items: [
'build-with-0g/rollups-and-appchains/op-stack-on-0g-da',
'build-with-0g/rollups-and-appchains/arbitrum-nitro-on-0g-da',
],
},
{
type: 'category',
label: 'Rollup-as-a-Service (coming soon)',
items: [
'build-with-0g/rollup-as-a-service/caldera-on-0g-da',
],
},
'build-with-0g/contracts',
'build-with-0g/faucet',
'build-with-0g/explorer',
],
},
{
type: 'category',
label: 'Learn More About 0G',
className: 'sidebar-category learn-more',
items: ['learn-more/security', 'learn-more/whitepaper', 'learn-more/how-to-contribute',
{
type: 'link',
label: 'Blog',
href: 'https://0g.ai/blog',
className: 'external-link',
},
],
},
{
type: 'category',
label: 'Node Sale',
className: 'sidebar-category node-sale',
link: {
type: 'doc',
id: 'node-sale/node-sale-landing',
},
items: [
{
type: 'category',
label: 'Introduction',
items: [
'node-sale/intro/intro',
'node-sale/intro/node-holder-benefits',
'node-sale/intro/sale-structure',
'node-sale/intro/eligibility',
],
},
{
type: 'category',
label: 'Node Sale Details',
items: [
'node-sale/details/purchasing-nodes',
'node-sale/details/incentives-and-rewards',
'node-sale/details/compliance-and-regulatory',
],
},
{
type: 'category',
label: 'Frequently Asked Questions',
items: [
'node-sale/faq/faq',
],
},
'node-sale/disclaimer',
],
},
],
};
export default sidebars;