From 05803dab03da619eb435120e8c8e707ecea94724 Mon Sep 17 00:00:00 2001 From: Thomas Heartman Date: Fri, 7 Oct 2022 13:56:52 +0200 Subject: [PATCH] docs: move the topic guides section to near top of sidebar --- website/sidebars.js | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/website/sidebars.js b/website/sidebars.js index 7da54080ba..3e3ee0d56f 100644 --- a/website/sidebars.js +++ b/website/sidebars.js @@ -28,6 +28,23 @@ module.exports = { 'user_guide/quickstart', ], }, + { + label: 'Topic guides', + collapsed: false, + type: 'category', + link: { + type: 'generated-index', + title: 'Topic guides', + description: + 'Discussions, explanations, and explorations regarding topics related to Unleash.', + slug: '/topics', + }, + items: [ + 'topics/anatomy-of-unleash', + 'topics/a-b-testing', + 'topics/proxy-hosting', + ], + }, { label: 'How-to guides', collapsed: false, @@ -303,22 +320,5 @@ module.exports = { }, ], }, - { - label: 'Topic guides', - collapsed: false, - type: 'category', - link: { - type: 'generated-index', - title: 'Topic guides', - description: - 'Discussions, explanations, and explorations regarding topics related to Unleash.', - slug: '/topics', - }, - items: [ - 'topics/anatomy-of-unleash', - 'topics/a-b-testing', - 'topics/proxy-hosting', - ], - }, ], };