From 12ec4c4ff72b3ae4e953583db710c0148f527a35 Mon Sep 17 00:00:00 2001 From: Henrique Dias Date: Tue, 19 Sep 2023 13:42:30 +0200 Subject: [PATCH] feat: make menu structure more consistent (#614) * feat: remove 'Install', update 'About' links * feat: add community and developers menu * feat: remove team and help links --- src/.vuepress/config.js | 28 ++++++++++++---------------- 1 file changed, 12 insertions(+), 16 deletions(-) diff --git a/src/.vuepress/config.js b/src/.vuepress/config.js index 6c01a344..d35424fc 100644 --- a/src/.vuepress/config.js +++ b/src/.vuepress/config.js @@ -42,20 +42,18 @@ const themeConfigDefaults = { ], footerLegal: '', headerLinks: [ - { text: 'About', link: 'https://ipfs.tech/#why' }, - { text: 'Install', link: 'https://ipfs.tech/#install' }, + { text: 'About', link: 'https://ipfs.tech/' }, + { text: 'Community', link: 'https://ipfs.tech/community/' }, + { text: 'Developers', link: 'https://ipfs.tech/developers/' }, { text: 'Docs', link: 'https://docs.ipfs.tech/' }, - { text: 'Team', link: 'https://ipfs.tech/team' }, { text: 'Blog', link: '/' }, - { text: 'Help', link: 'https://ipfs.tech/help' }, ], mobileNavLinks: [ - { text: 'About', link: 'https://ipfs.tech/#why' }, - { text: 'Install', link: 'https://ipfs.tech/#install' }, + { text: 'About', link: 'https://ipfs.tech/' }, + { text: 'Community', link: 'https://ipfs.tech/community/' }, + { text: 'Developers', link: 'https://ipfs.tech/developers/' }, { text: 'Docs', link: 'https://docs.ipfs.tech/' }, - { text: 'Team', link: 'https://ipfs.tech/team' }, { text: 'Blog', link: '/' }, - { text: 'Help', link: 'https://ipfs.tech/help' }, ], } @@ -112,20 +110,18 @@ module.exports = { }, ], headerLinks: [ - { text: 'About', link: 'https://ipfs.tech/#why' }, - { text: 'Install', link: 'https://ipfs.tech/#install' }, + { text: 'About', link: 'https://ipfs.tech/' }, + { text: 'Community', link: 'https://ipfs.tech/community/' }, + { text: 'Developers', link: 'https://ipfs.tech/developers/' }, { text: 'Docs', link: 'https://docs.ipfs.tech/' }, - { text: 'Team', link: 'https://ipfs.tech/team' }, { text: 'Blog', link: '/zh-cn' }, - { text: 'Help', link: 'https://ipfs.tech/help' }, ], mobileNavLinks: [ - { text: 'About', link: 'https://ipfs.tech/#why' }, - { text: 'Install', link: 'https://ipfs.tech/#install' }, + { text: 'About', link: 'https://ipfs.tech/' }, + { text: 'Community', link: 'https://ipfs.tech/community/' }, + { text: 'Developers', link: 'https://ipfs.tech/developers/' }, { text: 'Docs', link: 'https://docs.ipfs.tech/' }, - { text: 'Team', link: 'https://ipfs.tech/team' }, { text: 'Blog', link: '/zh-cn/' }, - { text: 'Help', link: 'https://ipfs.tech/help' }, ], }, },