-
Notifications
You must be signed in to change notification settings - Fork 34
/
sidebarGetInvolved.ts
49 lines (48 loc) · 1.22 KB
/
sidebarGetInvolved.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
import {SidebarsConfig} from '@docusaurus/plugin-content-docs';
export const sidebarGetInvolved: SidebarsConfig = {
getInvolved: [
'get-involved/README',
{
type: 'link',
label: 'Become our Ambassador',
href: 'https://oasisprotocol.org/ambassador-program',
},
{
type: 'link',
label: 'Become our Influencer',
href: 'https://oasisprotocol.org/influencer',
},
{
type: 'link',
label: 'Apply for Grant',
href: 'https://oasisprotocol.org/grant-programs',
},
{
type: 'link',
label: 'Join our University Program',
href: 'https://oasisprotocol.org/university-program',
},
{
type: 'link',
label: 'Follow Community Portal',
href: 'https://oasisrose.garden',
},
{
type: 'category',
label: 'Run a Node',
collapsible: false,
link: {
type: 'generated-index',
slug: 'get-involved/run-node',
},
items: [
'get-involved/run-node/validator-node',
'get-involved/run-node/paratime-node',
],
},
'get-involved/oasis-core',
'get-involved/network-governance',
'get-involved/delegation-policy',
'get-involved/token-delivery-and-kyc',
],
};