-
-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathsidebars.ts
More file actions
101 lines (99 loc) · 2.63 KB
/
sidebars.ts
File metadata and controls
101 lines (99 loc) · 2.63 KB
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
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: ["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/index",
"stremio/extras/account-bootstrapper",
"stremio/extras/addon-manager",
"stremio/extras/debrid-media-manager",
"stremio/extras/open-in-stremio",
"stremio/extras/discord-integration",
"stremio/extras/stremio-community",
"stremio/extras/stremio-enhanced",
"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: "Self Hosting",
link: {
type: "doc",
id: "selfhosting/index",
},
items: [
"selfhosting/oracle",
"selfhosting/docker",
"selfhosting/template",
],
},
{
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;