-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsidebars.ts
99 lines (97 loc) · 2.39 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
import type {SidebarsConfig} from '@docusaurus/plugin-content-docs';
const sidebars: SidebarsConfig = {
baseSidebar: [
'index',
{
type: 'category',
label: '역도 GMS',
collapsed: false,
items: [
'Weightlifting/introduction',
{
type: 'category',
label: 'GMS 사용법',
collapsed: false,
items: [
'Weightlifting/gms/gms-usage',
'Weightlifting/gms/scoreboard',
'Weightlifting/gms/progress-board',
'Weightlifting/gms/referee-tablet',
'Weightlifting/gms/timer',
'Weightlifting/gms/admin'
],
},
{
type: 'category',
label: '역도 기본상식',
collapsed: false,
items: [
'Weightlifting/info/about-weightlifting',
'Weightlifting/info/wl-story',
'Weightlifting/info/snatch-clean-jerk',
'Weightlifting/info/ranking',
'Weightlifting/info/score-mark',
'Weightlifting/info/order-of-play',
'Weightlifting/info/set-weight',
'Weightlifting/info/plate',
'Weightlifting/info/color',
'Weightlifting/info/diameter-thickness',
'Weightlifting/info/material-marking',
'Weightlifting/info/tolerance',
'Weightlifting/info/shoes-and-belt',
],
},
],
},
// {
// type: 'category',
// label: '배드민턴',
// items: [
// 'Badminton/introduction'
// ],
// },
// {
// type: 'category',
// label: '축구',
// items: [
// 'Soccer/introduction'
// ],
// },
// {
// type: 'category',
// label: '로드사이클',
// items: [
// 'Roadcycling/introduction'
// ],
// },
// {
// type: 'category',
// label: '농구',
// items: [
// 'Basketball/introduction'
// ],
// },
// {
// type: 'category',
// label: '탁구',
// items: [
// 'Tabletennis/introduction'
// ],
// },
// {
// type: 'category',
// label: '볼링',
// items: [
// 'Balling/introduction'
// ],
// },
// {
// type: 'category',
// label: '골프',
// items: [
// 'Golf/introduction'
// ],
// },
]
};
export default sidebars;