-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsidebars.ts
109 lines (107 loc) · 1.61 KB
/
sidebars.ts
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
import type {SidebarsConfig} from '@docusaurus/plugin-content-docs';
const sidebars: SidebarsConfig = {
sidebar: [
{
type: 'doc',
id: 'readme',
},
{
type: 'doc',
id: 'setup',
},
{
type: 'doc',
id: 'changelog'
},
{
type: 'doc',
id: 'language',
},
{
type: 'category',
label: 'features',
link: {
type: 'doc',
id: 'features/index'
},
items: [
{
type: 'doc',
id: 'features/anti-spam',
},
{
type: 'doc',
id: 'features/captcha',
},
{
type: 'doc',
id: 'features/raid-mode',
},
{
type: 'doc',
id: 'features/reports',
},
{
type: 'doc',
id: 'features/channel-lock',
},
{
type: 'doc',
id: 'features/moderation',
},
{
type: 'doc',
id: 'features/utilities',
},
],
},
{
type: 'category',
label: 'guides',
link: {
type: 'doc',
id: 'guides/index'
},
items: [
{
type: 'doc',
id: 'guides/prefix',
},
{
type: 'doc',
id: 'guides/malfunctions',
},
{
type: 'doc',
id: 'guides/report-violation-to-discord',
}
],
},
{
type: 'category',
label: 'useful-links',
link: {
type: 'doc',
id: 'useful-links/index'
},
items: [
{
type: 'link',
href: 'https://raidprotect.bot/invite',
label: 'invite'
},
{
type: 'link',
href: 'https://raidprotect.bot/discord',
label: 'discord',
},
{
type: 'link',
href: 'https://suggestions.raidprotect.bot',
label: 'suggest',
},
],
},
]
};
export default sidebars;