From 3f8f722ac0054e2f65d75bf51e1a0590e7ca16cd Mon Sep 17 00:00:00 2001 From: Soitora Date: Thu, 30 Apr 2020 00:44:44 +0200 Subject: [PATCH] Touch up the navbar (#151) * Initial build * Remove old faq pages * Remove redundant extraction attempts * Change headers * Fixed internal links * Fixed last internal link * Move settings * Move settings to subfolder * Change up navigation Split "Need help" Add guides to guide dropdown Join links together and add Ko-fi --- src/.vuepress/config/nav.js | 43 ++++++++++++++++++++++++------------- 1 file changed, 28 insertions(+), 15 deletions(-) diff --git a/src/.vuepress/config/nav.js b/src/.vuepress/config/nav.js index db3b4805..f6c9352a 100644 --- a/src/.vuepress/config/nav.js +++ b/src/.vuepress/config/nav.js @@ -1,27 +1,40 @@ module.exports = [ + { text: "FAQ", link: "/help/faq/" }, { - text: "Need help?", - link: "/help/", + text: "Guides", items: [ - { - text: "Frequently Asked Questions", - link: "/help/faq/" - }, { text: "Guides", items: [ - { text: "General", link: "/help/guides/getting-started" }, - { text: "Settings", link: "/help/guides/settings/" } + { text: "Getting started", link: "/help/guides/getting-started/" }, + { text: "Source problems", link: "/help/guides/source-problems/" }, + { text: "Source migration", link: "/help/guides/source-migration/" }, + { text: "Creating backups", link: "/help/guides/creating-backups/" }, + { text: "Reading local manga", link: "/help/guides/reading-local-manga/" }, + { text: "Categories", link: "/help/guides/categories/" }, + { text: "Settings", link: "/help/guides/settings/" }, ] - }, - { - text: "Contribution", - items: [{ text: "How can I help?", link: "/help/contribution" }] } - ] + ], }, { text: "Forks", link: "/forks/" }, { text: "Extensions", link: "/extensions/" }, - { text: "Discord", link: "https://discord.gg/tachiyomi" }, - { text: "Reddit", link: "https://reddit.com/r/Tachiyomi" } + { + text: "Links", + items: [ + { + text: "Community", + items: [ + { text: "Discord", link: "https://discord.gg/tachiyomi" }, + { text: "Reddit", link: "https://reddit.com/r/Tachiyomi" }, + ] + }, + { + text: "Sponsor", + items: [ + { text: "Ko-fi", link: "https://ko-fi.com/inorichi" }, + ] + }, + ] + }, ];