-
Notifications
You must be signed in to change notification settings - Fork 0
/
sidebars.ts
73 lines (66 loc) · 1.27 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
const commonSidebar = [
];
const lily58prov2 = [
'lily58-pro-v2/about',
'lily58-pro-v2/assembly',
'lily58-pro-v2/firmware',
'lily58-pro-v2/technical_specifications',
]
const lily58pro = [
'lily58-pro/Lily58_Pro_BG',
'lily58-pro/firmware',
]
const literev3 = [
'lily58-lite-rev3/about',
'lily58-lite-rev3/assembly',
]
const literev2 = [
'lily58-lite-rev2/Lily58_Lite_Rev2',
'lily58-lite-rev2/Lily58_Lite_Rev2_BG',
'lily58-lite-rev2/Lily58_Lite_Rev2_PinHeader',
'lily58-lite-rev2/Lily58_Lite_Rev2_Parts',
'lily58-lite-rev2/firmware',
]
const sidebars = {
topSidebar: [
'about',
{
type: 'category',
label: 'Lily58 Pro V2',
items: lily58prov2,
},
{
type: 'category',
label: 'Lily58 Pro',
items: lily58pro,
},
{
type: 'category',
label: 'Lily58 Lite Rev3',
items: literev3,
},
{
type: 'category',
label: 'Lily58 Lite Rev2',
items: literev2,
},
...commonSidebar
],
prov2Sidebar: [
...lily58prov2,
...commonSidebar,
],
proSidebar: [
...lily58pro,
...commonSidebar,
],
literev3Sidebar: [
...literev3,
...commonSidebar,
],
literev2Sidebar: [
...literev2,
...commonSidebar,
],
};
module.exports = sidebars;