forked from gnars-dao/gnars-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidebars.js
More file actions
80 lines (71 loc) · 1.82 KB
/
sidebars.js
File metadata and controls
80 lines (71 loc) · 1.82 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
/**
* Creating a sidebar enables you to:
- create an ordered group of docs
- render a sidebar for each doc of that group
- provide next/previous navigation
The sidebars can be generated from the filesystem, or explicitly defined here.
Create as many sidebars as you want.
*/
// @ts-check
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
docs: {
Onboarding: [
'intro', // 🐣 - Start Here
{
type: 'category',
label: '🛹 Level 1 - Enter Gnarnia',
items: [
'Level-1/what-is-ethereum',
'Level-1/what-is-a-NFT',
'Level-1/how-to-create-wallet',
'Level-1/what-gnars-nft-can-do',
'Level-1/how-to-use-discord',
'Level-1/how-do-i-get-first-gnar'
],
},
{
type: 'category',
label: '🛹 Level 2 - Join the Club',
items: [
'Level-2/2-1-verifying-your-gnar',
'Level-2/2-2-Gnarly-Meetings',
'Level-2/2-3-How-to-vote-in-the-DAO-proposals',
'Level-2/2-4-how-to-use-eth-to-buy',
'Level-2/2-5-proposal-guidelines',
'Level-2/2-6'
],
},
{
type: 'category',
label: '🛹 Level 3 - Gettin’ Gnarlier',
items: [
'Level-3/bots',
'Level-3/nounish-lifestyle',
'Level-3/thats-gnarly'
],
},
{
type: 'category',
label: '🛹 Level 4 - Callin\' the Shots',
items: [
'Level-4/4-1-Picking-the-Next-Gnar'
],
},
],
DAO: [
{
type: 'category',
label: 'Governance',
items: [
'DAO/introduction-to-governance'
]
},
{
type: 'doc',
id: 'DAO/contract-interaction'
}
],
},
};
module.exports = sidebars;