Files
guides/sidebars.ts
T
Viren070 e644eb3752 docs(stremio.guide): add details for all addons (#15)
* docs(stremio.guide): add details for HTTP addons

* docs(stremio.guide): add details for USA TV

* docs(stremio): Move stremio gdrive into http addons (#16)

* docs(stremio.extras): delete stremio-gdrive.mdx

* config(sidebars): remove stremio-gdrive from sidebar

* docs(stremio.guide): add stremio-gdrive to HTTP addons
2024-08-12 14:26:54 +01:00

125 lines
2.5 KiB
TypeScript

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/guide",
{
type: "category",
label: "Extras",
link: {
type: "doc",
id: "stremio/extras/index",
},
items: [
"stremio/extras/trakt",
"stremio/extras/addon-manager",
"stremio/extras/debrid-media-manager",
"stremio/extras/stremio-server",
"stremio/extras/discord-integration",
"stremio/extras/pimp-my-stremio",
"stremio/extras/stremio-downloader"
]
},
"stremio/faq",
"stremio/troubleshooting",
"stremio/credits",
],
},
{
type: "category",
label: "Kodi ⏳",
link: {
type: "doc",
id: "kodi/index",
},
items: [],
},
"aniyomi/index",
"revanced/index"
],
},
{
type: "category",
label: "Reading",
link: {
type: "generated-index",
title: "Reading",
description: "Guides on downloading and reading books / comics",
keywords: ["books", "comics", "download"],
},
items: [
{
type: "category",
label: "TachiyomiJ2K ⏳",
link: {
type: "doc",
id: "tachiyomiJ2K/index",
},
items: []
}
]
}
],
};
export default sidebars;