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,6 +3,11 @@
/** @type {import("@docusaurus/plugin-content-docs").SidebarsConfig} */
const sidebars = {
main: [
{
type: "category",
label: "About Waku",
collapsible: false,
items: [
"overview/index",
"overview/history",
"overview/why-waku",
@ -19,7 +24,6 @@ const sidebars = {
type: "category",
label: "Concepts",
collapsed: false,
collapsible: true,
items: [
"overview/concepts/protocols",
"overview/concepts/content-topics",
@ -31,8 +35,6 @@ const sidebars = {
{
type: "category",
label: "Reference",
collapsed: false,
collapsible: true,
items: [
"overview/reference/glossary",
"overview/reference/security-features",
@ -40,11 +42,25 @@ const sidebars = {
"overview/reference/waku-vs-libp2p"
]
}
]
}
],
guides: [
{
type: "category",
label: "Guides",
collapsible: false,
items: [
"guides/sdks-and-nodes"
]
}
],
community: [
{
type: "category",
label: "Community",
collapsible: false,
items: [
"powered-by-waku",
"community",
"contribute",
@ -55,6 +71,8 @@ const sidebars = {
href: "https://hackenproof.com/status-dot-im/waku"
}
]
}
]
};
module.exports = sidebars;