improve navbar hint

This commit is contained in:
LordGhostX 2023-06-06 03:47:24 +01:00
parent 6ca30709c9
commit 4181a0ecd6
No known key found for this signature in database
GPG Key ID: 520CC5DC4F94FCC7
2 changed files with 60 additions and 42 deletions

View File

@ -59,7 +59,7 @@ const config = {
},
{
type: "dropdown",
label: "Getting Started",
label: "Guides",
position: "right",
items: [
{
@ -107,7 +107,7 @@ const config = {
footer: {
links: [
{
title: "Getting Started",
title: "Guides",
items: [
{
to: "/guides/sdks-and-nodes",

View File

@ -3,56 +3,74 @@
/** @type {import("@docusaurus/plugin-content-docs").SidebarsConfig} */
const sidebars = {
main: [
"overview/index",
"overview/history",
"overview/why-waku",
"overview/use-cases",
{
type: "html",
value: "<a href='/guides/sdks-and-nodes' target='_blank' rel='noopener noreferrer' class='menu__link external-link'>SDKs and Nodes <svg width='13.5' height='13.5' viewBox='0 0 24 24'><path fill='currentColor' d='M21 13v10h-21v-19h12v2h-10v15h17v-8h2zm3-12h-10.988l4.035 4-6.977 7.07 2.828 2.828 6.977-7.07 4.125 4.172v-11z'></path></svg></a>"
},
{
type: "html",
value: "<a href='/presentations' target='_blank' rel='noopener noreferrer' class='menu__link external-link'>Presentations <svg width='13.5' height='13.5' viewBox='0 0 24 24'><path fill='currentColor' d='M21 13v10h-21v-19h12v2h-10v15h17v-8h2zm3-12h-10.988l4.035 4-6.977 7.07 2.828 2.828 6.977-7.07 4.125 4.172v-11z'></path></svg></a>"
},
{
type: "category",
label: "Concepts",
collapsed: false,
collapsible: true,
label: "About Waku",
collapsible: false,
items: [
"overview/concepts/protocols",
"overview/concepts/content-topics",
"overview/concepts/network-domains",
"overview/concepts/peer-discovery",
"overview/concepts/transports"
]
},
{
type: "category",
label: "Reference",
collapsed: false,
collapsible: true,
items: [
"overview/reference/glossary",
"overview/reference/security-features",
"overview/reference/research-in-progress",
"overview/reference/waku-vs-libp2p"
"overview/index",
"overview/history",
"overview/why-waku",
"overview/use-cases",
{
type: "html",
value: "<a href='/guides/sdks-and-nodes' target='_blank' rel='noopener noreferrer' class='menu__link external-link'>SDKs and Nodes <svg width='13.5' height='13.5' viewBox='0 0 24 24'><path fill='currentColor' d='M21 13v10h-21v-19h12v2h-10v15h17v-8h2zm3-12h-10.988l4.035 4-6.977 7.07 2.828 2.828 6.977-7.07 4.125 4.172v-11z'></path></svg></a>"
},
{
type: "html",
value: "<a href='/presentations' target='_blank' rel='noopener noreferrer' class='menu__link external-link'>Presentations <svg width='13.5' height='13.5' viewBox='0 0 24 24'><path fill='currentColor' d='M21 13v10h-21v-19h12v2h-10v15h17v-8h2zm3-12h-10.988l4.035 4-6.977 7.07 2.828 2.828 6.977-7.07 4.125 4.172v-11z'></path></svg></a>"
},
{
type: "category",
label: "Concepts",
collapsed: false,
items: [
"overview/concepts/protocols",
"overview/concepts/content-topics",
"overview/concepts/network-domains",
"overview/concepts/peer-discovery",
"overview/concepts/transports"
]
},
{
type: "category",
label: "Reference",
items: [
"overview/reference/glossary",
"overview/reference/security-features",
"overview/reference/research-in-progress",
"overview/reference/waku-vs-libp2p"
]
}
]
}
],
guides: [
"guides/sdks-and-nodes"
{
type: "category",
label: "Guides",
collapsible: false,
items: [
"guides/sdks-and-nodes"
]
}
],
community: [
"powered-by-waku",
"community",
"contribute",
"presentations",
{
type: "link",
label: "Bug Bounty Program",
href: "https://hackenproof.com/status-dot-im/waku"
type: "category",
label: "Community",
collapsible: false,
items: [
"powered-by-waku",
"community",
"contribute",
"presentations",
{
type: "link",
label: "Bug Bounty Program",
href: "https://hackenproof.com/status-dot-im/waku"
}
]
}
]
};