-
Notifications
You must be signed in to change notification settings - Fork 15
/
sidebars.js
111 lines (103 loc) · 3.78 KB
/
sidebars.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
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
/**
* 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
const sidebars = {
// Create a sidebar for your tutorial at the end of this list
substrateInBitsSidebar: [
"substrate-in-bits/README",
{
type: "autogenerated",
dirName: "substrate-in-bits/docs",
},
],
tokengatedSidebar: [
"tokengated-polkadot-next-js/intro",
"tokengated-polkadot-next-js/setup",
"tokengated-polkadot-next-js/connecting-to-the-wallet-browser-extension",
"tokengated-polkadot-next-js/authentication-with-next-auth",
"tokengated-polkadot-next-js/conclusion",
],
polkadotWalletSidebar: [
"wallet-with-polkadot-js-and-react-with-typescript/intro",
"wallet-with-polkadot-js-and-react-with-typescript/step1",
"wallet-with-polkadot-js-and-react-with-typescript/step2",
"wallet-with-polkadot-js-and-react-with-typescript/step3",
"wallet-with-polkadot-js-and-react-with-typescript/step4",
"wallet-with-polkadot-js-and-react-with-typescript/step5",
"wallet-with-polkadot-js-and-react-with-typescript/conclusion",
],
kittiesPart01Sidebar: [
"kitties-part-01/intro",
"kitties-part-01/step1",
"kitties-part-01/step2",
"kitties-part-01/step3",
"kitties-part-01/step4",
"kitties-part-01/step5",
"kitties-part-01/step6",
"kitties-part-01/step7",
"kitties-part-01/step8",
"kitties-part-01/conclusion",
],
inherentsTutorialSidebar: [
"substrate-inherents-tutorial/intro",
"substrate-inherents-tutorial/setup",
"substrate-inherents-tutorial/client",
"substrate-inherents-tutorial/runtime",
"substrate-inherents-tutorial/running-nodes",
"substrate-inherents-tutorial/weather-oracle",
"substrate-inherents-tutorial/conclusion",
],
parachainVaultSidebar: [
"parachain-to-polkadot-vault/intro",
"parachain-to-polkadot-vault/step1",
"parachain-to-polkadot-vault/step2",
"parachain-to-polkadot-vault/step3",
"parachain-to-polkadot-vault/step4",
"parachain-to-polkadot-vault/step5",
"parachain-to-polkadot-vault/conclusion",
],
decentralizedExchangeInk: [
"decentralized-exchange-ink/introduction",
"decentralized-exchange-ink/implementation",
"decentralized-exchange-ink/unit-testing",
"decentralized-exchange-ink/conclusion",
],
kusamaTheoryPracticeSidebar: [
"kusama-theory-practice/intro",
"kusama-theory-practice/intro-to-polkadot",
"kusama-theory-practice/ecosystem-explained",
"kusama-theory-practice/practice-wallet",
"kusama-theory-practice/first-transaction",
"kusama-theory-practice/practice-transaction",
"kusama-theory-practice/talisman",
"kusama-theory-practice/ledger",
"kusama-theory-practice/novawallet",
"kusama-theory-practice/practice-proposal",
"kusama-theory-practice/token-mint",
"kusama-theory-practice/token-manage",
"kusama-theory-practice/practice-mint",
"kusama-theory-practice/polkadot-auth",
"kusama-theory-practice/ksm",
"kusama-theory-practice/karura",
"kusama-theory-practice/basilisk",
"kusama-theory-practice/moonriver",
"kusama-theory-practice/ipfs",
"kusama-theory-practice/practice-ipfs",
"kusama-theory-practice/crust",
"kusama-theory-practice/practice-crust",
"kusama-theory-practice/crust-routine",
"kusama-theory-practice/robonomics",
"kusama-theory-practice/lamp",
"kusama-theory-practice/practice-lamp",
"kusama-theory-practice/spot",
"kusama-theory-practice/practice-spot",
"kusama-theory-practice/has",
]
};
module.exports = sidebars;