diff --git a/docs/advanced-usage/custom-apps.md b/docs/addons/custom-apps.md similarity index 100% rename from docs/advanced-usage/custom-apps.md rename to docs/addons/custom-apps.md diff --git a/docs/advanced-usage/extensions.md b/docs/addons/extensions.md similarity index 100% rename from docs/advanced-usage/extensions.md rename to docs/addons/extensions.md diff --git a/docs/addons/index.md b/docs/addons/index.md new file mode 100644 index 0000000..2b7f49e --- /dev/null +++ b/docs/addons/index.md @@ -0,0 +1,10 @@ +--- +title: Addons +--- + +```mdx-code-block +import DocCardList from '@theme/DocCardList'; +import {useCurrentSidebarCategory} from '@docusaurus/theme-common'; + + +``` \ No newline at end of file diff --git a/docs/advanced-usage/themes.md b/docs/addons/themes.md similarity index 100% rename from docs/advanced-usage/themes.md rename to docs/addons/themes.md diff --git a/docs/development/custom-apps.md b/docs/development/custom-apps.md index 219cc69..7cb5011 100644 --- a/docs/development/custom-apps.md +++ b/docs/development/custom-apps.md @@ -5,7 +5,7 @@ description: 🔧 Creating Custom Apps. ## How to start -- Make a new folder for your custom app in your [CustomApps folder](../advanced-usage/custom-apps). You'll install it like any other custom app. +- Make a new folder for your custom app in your [CustomApps folder](../addons/custom-apps). You'll install it like any other custom app. - Create an `index.js` and a `manifest.json` inside that folder. - The `index.js` file is the main file for the custom app. - The manifest includes some important information to make the custom app work. diff --git a/docusaurus.config.js b/docusaurus.config.js index 2b88ed1..7a1bbba 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -87,6 +87,10 @@ const config = { label: 'Advanced Usage', to: '/docs/advanced-usage', }, + { + label: 'Addons', + to: '/docs/addons', + }, { label: 'Development', to: '/docs/development', diff --git a/sidebars.js b/sidebars.js index 9d498f6..4482f66 100644 --- a/sidebars.js +++ b/sidebars.js @@ -27,10 +27,21 @@ const sidebars = { items: [ 'advanced-usage/installation', 'advanced-usage/uninstallation', - 'advanced-usage/command-line-interface', - 'advanced-usage/themes', - 'advanced-usage/extensions', - 'advanced-usage/custom-apps', + 'advanced-usage/command-line-interface' + ], + }, + { + type: 'category', + label: 'Addons', + link: { + type: 'generated-index', + description: "Here is a collection of official and popular addons, and what they do.", + slug: '/addons', + }, + items: [ + 'addons/themes', + 'addons/extensions', + 'addons/custom-apps', ], }, {