mirror of
https://github.com/Viren070/guides.git
synced 2025-12-01 23:16:16 +01:00
103 lines
2.7 KiB
TypeScript
103 lines
2.7 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: ["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/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: "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;
|