Skip to content

Commit

Permalink
Add dropdown for doc.rs in website (#236)
Browse files Browse the repository at this point in the history
Co-authored-by: Anshul Goyal <[email protected]>
  • Loading branch information
Anshul Goyal and Anshul Goyal authored Aug 2, 2022
1 parent 8772298 commit 8ea0bea
Showing 1 changed file with 47 additions and 1 deletion.
48 changes: 47 additions & 1 deletion website/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,55 @@ module.exports = {
items: [
{to: '/blog', label: 'Blog', position: 'left'},
{
href: 'https://docs.rs/gloo',
type: 'dropdown',
label: 'docs.rs',
position: 'right',
items: [
{
label: 'gloo',
href: 'https://docs.rs/gloo',
},
{
label: 'dialogs',
href: 'https://docs.rs/gloo-dialogs/',
},
{
label: 'events',
href: 'https://docs.rs/gloo-events/',
},
{
label: 'file',
href: 'https://docs.rs/gloo-file/',
},
{
label: 'history',
href: 'https://docs.rs/gloo-history/',
},
{
label: 'net',
href: 'https://docs.rs/gloo-net/',
},
{
label: 'render',
href: 'https://docs.rs/gloo-render/',
},
{
label: 'storage',
href: 'https://docs.rs/gloo-storage/',
},
{
label: 'timers',
href: 'https://docs.rs/gloo-timers/',
},
{
label: 'utils',
href: 'https://docs.rs/gloo-utils/',
},
{
label: 'worker',
href: 'https://docs.rs/gloo-worker/',
}
],
},
{
href: 'https://github.com/rustwasm/gloo',
Expand Down

0 comments on commit 8ea0bea

Please sign in to comment.