forked from houseofstake/houseofstake.org
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsidebars.ts
More file actions
111 lines (109 loc) · 3.39 KB
/
sidebars.ts
File metadata and controls
111 lines (109 loc) · 3.39 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
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
import type { SidebarsConfig } from '@docusaurus/plugin-content-docs';
const sidebars: SidebarsConfig = {
tutorialSidebar: [
{
type: 'category',
label: '📁 Overview',
link: {
type: 'generated-index',
title: 'Overview',
description:
'Learn about House of Stake, its governance philosophy, and our mission.',
slug: '/overview',
},
items: [
'overview/what-is-house-of-stake',
'overview/governance-philosophy',
'overview/mission-vision-values',
],
},
{
type: 'category',
label: '📁 Structure & Roles',
link: {
type: 'generated-index',
title: 'Structure & Roles',
description:
'Explore the organizational structure, working groups, committees, and key roles within House of Stake.',
slug: '/structure',
},
items: [
'structure/working-groups-overview',
'structure/delegates-and-participants',
'structure/screening-committee',
'structure/security-council',
'structure/responsibilities-and-scope',
'structure/code-of-conduct',
'structure/conflict-of-interest-policy',
],
},
{
type: 'category',
label: '📁 Governance System',
link: {
type: 'generated-index',
title: 'Governance System',
description:
'Understand the veNEAR token system, voting mechanisms, and governance processes.',
slug: '/governance-system',
},
items: [
'governance-system/what-is-venear',
'governance-system/venear-locking-mechanisms',
'governance-system/proposal-and-voting-process',
//'governance-system/rewards-and-incentives',
//'governance-system/inflation-model',
'governance-system/versioning-and-evolution',
],
},
{
type: 'category',
label: '📁 Strategic Direction',
link: {
type: 'generated-index',
title: 'Strategic Direction',
description:
'Discover our vision for the future, including roadmap, milestones, and long-term goals.',
slug: '/strategic-direction',
},
items: [
'strategic-direction/why-this-matters',
'strategic-direction/the-future-ai-and-scaling',
//'strategic-direction/roadmap-and-milestones',
],
},
{
type: 'category',
label: '📁 Get Involved',
link: {
type: 'generated-index',
title: 'Get Involved',
description:
'Learn how to participate in House of Stake by submitting proposals or contributing to the project.',
slug: '/get-involved',
},
items: [
'get-involved/submit-a-proposal',
'get-involved/contribute-to-code-or-documentation',
],
},
{
type: 'category',
label: '📁 Working Groups',
link: {
type: 'generated-index',
title: 'Working Groups',
description:
'Explore the various working groups focusing on governance, ecosystem growth, treasury, and network economics.',
slug: '/working-groups',
},
items: [
'working-groups/governance-infrastructure-and-processes',
'working-groups/ecosystem-growth-strategy',
'working-groups/treasury-strategy-and-management',
'working-groups/network-economics-and-security',
],
},
],
};
export default sidebars;