From 901eff2f4063bf6fc3e892cad2b47cd69c042505 Mon Sep 17 00:00:00 2001 From: Pavel Kutas <49776368+pavelkutas@users.noreply.github.com> Date: Sat, 21 Dec 2024 13:09:18 +0300 Subject: [PATCH] Update sidebars.js --- sidebars.js | 39 +++++---------------------------------- 1 file changed, 5 insertions(+), 34 deletions(-) diff --git a/sidebars.js b/sidebars.js index d3b4281..5565153 100644 --- a/sidebars.js +++ b/sidebars.js @@ -1,43 +1,14 @@ -const sidebars = { +module.exports = { tutorialSidebar: [ - { - type: 'doc', - id: 'intro', // document ID from intro.md - label: 'Introduction', - }, { type: 'category', - label: 'Tutorial', - items: [ - { - type: 'doc', - id: 'tutorial/getting-started', - label: 'Getting Started', - }, - { - type: 'doc', - id: 'tutorial/advanced-guide', - label: 'Advanced Guide', - }, - ], + label: 'Getting Started', + items: ['intro'], }, { type: 'category', - label: 'Guides', - items: [ - { - type: 'doc', - id: 'guides/overview', - label: 'Overview', - }, - { - type: 'doc', - id: 'guides/installation', - label: 'Installation', - }, - ], + label: 'API', + items: ['api'], }, ], }; - -module.exports = sidebars;