How to create a new menu in Docusaurus and different sidebar content
in my project, I haven’t been able to setup a new menu with different sidebar content
How can i add a new component to footer in docusaurus?
I want to remove the footer from docusaurus.config:
footer: { style: 'dark', links: [ { title: 'Docs', items: [ { label: 'Tutorial', to: '/', }, ], }, { title: 'Community', items: [ { label: 'Stack Overflow', href: '/questions/tagged/docusaurus', }, { label: 'Discord', href: 'https://discordapp.com/invite/docusaurus', }, { label: 'Twitter', href: 'https://twitter.com/docusaurus', }, ], }, { title: 'More', items: [ { label: 'Blog', to: '/blog', }, { label: 'GitHub', href: 'https://github.com/facebook/docusaurus', }, ], }, { title: 'More', items: [ { label: 'Blog', to: '/blog', }, { label: 'GitHub', href: 'https://github.com/facebook/docusaurus', }, ], }, ], copyright:
Copyright © ${new Date().getFullYear()}, },
And add instead of this my new component, footer.js.
How can i do this?