-
Notifications
You must be signed in to change notification settings - Fork 593
Expand file tree
/
Copy pathsidebars-participate.js
More file actions
45 lines (43 loc) · 1.16 KB
/
sidebars-participate.js
File metadata and controls
45 lines (43 loc) · 1.16 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
// @ts-check
// Sidebar configuration for Participate documentation
// Non-versioned educational content about the Aztec network
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
participateSidebar: [
{ type: "doc", id: "index", label: "Overview" },
{ type: "doc", id: "alpha", label: "Alpha Network" },
{
type: "html",
value: '<span class="sidebar-title">Basics of Aztec</span>',
className: "sidebar-title",
},
"basics/addresses",
"basics/wallets",
"basics/fees",
"basics/transactions",
"basics/blocks",
"basics/bridging",
{
type: "html",
value: '<span class="sidebar-title">Token</span>',
className: "sidebar-title",
},
"token/index",
"token/staking",
"token/delegation",
"token/voting",
"token/economics",
{
type: "html",
value: '<span class="sidebar-title">Governance</span>',
className: "sidebar-title",
},
"governance/index",
"governance/proposal-lifecycle",
"governance/voting",
"governance/gse",
"governance/upgrades",
"governance/contracts",
],
};
module.exports = sidebars;