-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathsidebarsDapps.js
86 lines (80 loc) · 2.37 KB
/
sidebarsDapps.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
module.exports = {
dapps: [
{
type: 'category',
label: 'Giveth.io Guides',
link: {
type: 'generated-index',
title: 'Giveth.io Guides',
description: 'Learn more about how the Giveth Dapp works. We have a variety of articles tailored for Donors, Project Owners and how to use the GIV token.',
slug: 'dapps/'
},
items:[
'givethIO',
'gettingStarted',
{
type: 'category',
label: 'For Donors',
collapsed: true,
link: {type: 'doc', id: 'projectdonating'},
items: ['projectdonating', 'donatingmetamask' ,'multisigs', 'importTorusMM'
],
},
{
type: 'category',
label: 'For Project Owners',
collapsed: true,
link: {type: 'doc', id: 'createproject'},
items: ['createproject','listedUnlisted','projectVerification', 'projectUpdates',
],
},
{ type: 'category',
label: 'GIVeconomy',
link: {type: 'doc', id: 'giveconomy'},
items: [ 'givbacks', 'givstream', 'givpower',
{
type: 'category',
label: 'GIVgarden',
link: {type: 'doc', id: 'givgarden'},
items:['termsForProposals']
},
{
type: 'category',
label: 'GIVfarm',
link: {type: 'doc', id: 'givfarm'},
items:['regenFarms']
}
, 'givdrop'
]
},
'recurringDonation','quadraticfunding','giverspfp'
,
'disclosure',
'troubleshooting',
// {
// type: 'category',
// label: "Developer Guides",
// items: [ 'contributors','givethioinstallation' , {
// type: 'category',
// label: "Giveth TRACE (Deprecated)",
// items: ['TRACEinstallation','bridgeSecurity', 'developmentProcess']
// },
// 'regenFarmContracts'
// ]
// },
{
type: 'category',
label: 'Archives',
items: [
{
type: 'category',
label: 'Giveth TRACE (Deprecated)',
link: {type: 'doc', id:'introTrace'},
items: [ 'entitiesAndRoles','makeTraceableProject','leavingTraces', 'technicalWhitePaper', 'exchangeRates', 'traceContracts' ]
},'niceToken', 'angelVault',
]
},
],
},
]
}