home button on each sidebar

This commit is contained in:
fryorcraken 2025-09-29 16:36:24 +10:00
parent 75ae48d82b
commit 2fd4bb124b
No known key found for this signature in database
GPG Key ID: A82ED75A8DFC50A4

View File

@ -3,6 +3,11 @@
/** @type {import("@docusaurus/plugin-content-docs").SidebarsConfig} */
const sidebars = {
build: [
{
type: "link",
label: "Home",
href: "/",
},
{
type: "category",
label: "JavaScript SDK",
@ -37,6 +42,11 @@ const sidebars = {
},
],
runNode: [
{
type: "link",
label: "Home",
href: "/",
},
{
type: "category",
label: "Run a Nwaku Node",
@ -65,6 +75,11 @@ const sidebars = {
},
],
learn: [
{
type: "link",
label: "Home",
href: "/",
},
"learn/waku-network",
{
type: "category",
@ -98,12 +113,22 @@ const sidebars = {
"learn/faq",
],
research: [
{
type: "link",
label: "Home",
href: "/",
},
{
type: "autogenerated",
dirName: "research",
},
],
guides: [
{
type: "link",
label: "Home",
href: "/",
},
"guides/getting-started",
],
};