forked from hingeslab/doc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsidebars.js
126 lines (116 loc) · 2.89 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
112
113
114
115
116
117
118
119
120
121
122
123
124
/**
* 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 = {
// By default, Docusaurus generates a sidebar from the docs folder structure
tutorialSidebar: [{type: 'autogenerated', dirName: '.'}],
// But you can create a sidebar manually
/*
tutorialSidebar: [
'Hedgeplus',
'hello',
{
type: 'category',
label: 'Tutorial',
items: ['tutorial-basics/create-a-document'],
},
],
*/
};
const path = require('path');
const customCss = path.resolve(__dirname, 'static/css/custom.css');
module.exports = {
docs: [
{
type: 'category',
label: '**INTRODUCTION**',
items: [
'Introduction/Overview',
'Introduction/Challenges',
'Introduction/Solution',
],
},
{
type: 'category',
label: '**FEATURES**',
items: [
'Features/Autonomous',
'Features/AI-Powered-Trading-Signals',
'Features/Crypto-Assets-Investment-Fund',
'Features/Inner-Circle-Altcoins-Trading',
'Features/MetaVerse-NFT-Game',
'Features/Peer-to-Peer-OTC-Exchange',
'Features/Zero-percent-interest-loans',
],
},
{
type: 'category',
label: '**HINGES TOKEN**',
items: [
'Hinges-Token/Token-Utility',
'Hinges-Token/Token-Economics',
'Hinges-Token/Vesting-Schedule',
'Hinges-Token/Roadmap',
],
},
{
type: 'category',
label: '**USER GUIDES**',
items: [
'User-Guides/Staking',
'User-Guides/Provide-Liquidity',
],
},
{
type: 'category',
label: '**RESOURCES**',
items: [
'Resources/Deployed-Contract',
'Resources/Roadmap',
'Resources/Code-Contributors',
'Resources/Referral-Program',
'Resources/FAQ',
'Resources/Brand-Assets',
'Resources/Blog',
],
},
{
type: 'category',
label: '**SECURITY**',
items: [
'Security/Audit',
'Security/Bug-Bounty-Program',
],
},
{
type: 'category',
label: '**TEAM**',
items: [
'Team/About-Us',
'Team/Collaborate-with-US',
],
collapsed: false,
},
{
type: 'category',
label: '**OTHER**',
items: [
'Fractional-Co-Owned-Real-Estate/Fractional-Co-Owned-Real-Estate',
'Important-Notice/Important-Notice',
'Hinges-Vesting/Hinges-Vesting',
],
},
],
};
// Set all sidebars to not be collapsed
for (const sidebarName in sidebars) {
sidebars[sidebarName].collapsed = false;
}
module.exports = sidebars;