-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidebars.ts
More file actions
102 lines (93 loc) · 2.75 KB
/
sidebars.ts
File metadata and controls
102 lines (93 loc) · 2.75 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
import type { SidebarsConfig } from '@docusaurus/plugin-content-docs';
const sidebars: SidebarsConfig = {
docsSidebar: [
{
type: 'category',
label: '🧭 Start Here',
collapsed: false,
items: [
'start-here/what-is-crowdwalrus',
'start-here/how-crowdwalrus-works',
'start-here/key-concepts-glossary',
'getting-started/install-a-sui-wallet',
'getting-started/choose-network',
'getting-started/get-sui-for-gas',
'getting-started/get-wal-for-storage',
'help/faq',
'help/troubleshooting',
],
},
{
type: 'category',
label: '🚀 Campaign Owners',
collapsed: true,
items: [
'campaign-owners/launch-a-campaign',
'campaign-owners/choosing-goal-timeline',
'campaign-owners/choosing-recipient-wallet',
'campaign-owners/categories-and-socials',
'campaign-owners/cover-image-and-story-editor',
'campaign-owners/storage-epochs',
'campaign-owners/campaign-writing-toolkit',
'campaign-owners/managing-your-campaign',
'campaign-owners/campaign-statuses',
'campaign-owners/verification-and-listing',
'campaign-owners/nonprofit-vs-commercial',
'campaign-owners/campaign-deactivation',
'campaign-owners/campaign-deletion',
'campaign-owners/campaign-suins-subname',
],
},
{
type: 'category',
label: '🤝 Donors & Supporters',
collapsed: true,
items: [
'donors/how-to-contribute',
'donors/supported-tokens-and-pricing',
'donors/whats-the-net-amount',
'donors/nft-rewards',
'donors/creating-a-profile',
'donors/profile-suins-subname',
'donors/safety-for-donors',
],
},
{
type: 'category',
label: '🛡️ Verification & Trust',
collapsed: true,
items: [
'trust-safety/verification-overview',
'trust-safety/verification-process',
'trust-safety/apply-for-verification',
'trust-safety/reporting-abuse',
'trust-safety/content-and-listing-policy',
'trust-safety/transparency-playbook',
],
},
{
type: 'category',
label: '🧱 Developers',
collapsed: true,
items: [
'developers/architecture-overview',
'developers/walrus-storage-quilt',
'developers/smart-contract-overview',
'developers/indexer-and-apis',
'developers/contributing',
'developers/security-model',
],
},
{
type: 'category',
label: '⚖️ Legal',
collapsed: true,
items: [
'legal/terms-of-use',
'legal/privacy-policy',
'legal/disclaimer',
],
},
],
};
export default sidebars;