-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
sidebars.ts
117 lines (113 loc) · 2.47 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
110
111
112
113
114
115
116
117
import type { SidebarsConfig } from "@docusaurus/plugin-content-docs";
const sidebars: SidebarsConfig = {
guides: [
"index",
{
type: "category",
label: "Gaming",
link: {
type: "generated-index",
title: "Games / Emulation",
description: "Guides on downloading and setting up games / emulators",
keywords: ["games", "free", "download"],
},
items: [
{
type: "category",
label: "Minecraft",
link: {
type: "doc",
id: "minecraft/index",
},
items: [
{
type: "category",
label: "Java",
link: { type: "doc", id: "minecraft/java/index" },
items: [],
},
{
type: "category",
label: "Bedrock",
link: { type: "doc", id: "minecraft/bedrock/index" },
items: ["minecraft/bedrock/windows", "minecraft/bedrock/android"],
},
],
},
"plutonium/index",
],
},
{
type: "category",
label: "Streaming",
link: {
type: "generated-index",
title: "Movies / TV / Anime",
description:
"Guides on using apps that can be used to stream movies / tv shows / anime",
keywords: ["movies", "download"],
},
items: [
{
type: "category",
label: "Stremio",
link: {
type: "doc",
id: "stremio/index",
},
items: [
"stremio/intro",
"stremio/technical-details",
"stremio/setup",
{
type: "category",
label: "Extras",
link: {
type: "doc",
id: "stremio/extras/index",
},
items: [
"stremio/extras/trakt",
"stremio/extras/account-bootstrapper",
"stremio/extras/addon-manager",
"stremio/extras/debrid-media-manager",
"stremio/extras/open-in-stremio",
"stremio/extras/discord-integration",
"stremio/extras/pimp-my-stremio",
"stremio/extras/stremio-downloader"
]
},
"stremio/faq",
"stremio/troubleshooting",
"stremio/credits",
],
},
{
type: "category",
label: "Aniyomi",
link: {
type: "doc",
id: "aniyomi/index",
},
items: [
"aniyomi/intro",
"aniyomi/setup",
"aniyomi/forks",
],
},
],
},
{
type: "category",
label: "Reading",
link: {
type: "generated-index",
title: "Reading",
description: "Guides on downloading and reading books / comics",
keywords: ["books", "comics", "download"],
},
items: []
}
],
};
export default sidebars;