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
This commit is contained in:
Henrique Dias
2023-09-19 13:42:30 +02:00
committed by GitHub
parent 35d5f72d35
commit 12ec4c4ff7
+12 -16
View File
@@ -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' },
],
},
},