From 3d46618fce8f18e2c4b3ba3a05c84cb5b221c0a6 Mon Sep 17 00:00:00 2001 From: Christian Nwamba Date: Mon, 3 Feb 2025 15:22:41 +0000 Subject: [PATCH] fix: add homepages to horizontal nav items --- docusaurus.config.ts | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/docusaurus.config.ts b/docusaurus.config.ts index 1cc14437e..69d5e3353 100644 --- a/docusaurus.config.ts +++ b/docusaurus.config.ts @@ -104,18 +104,20 @@ const config: Config = { position: "left", }, { - to: "/docs/identity", + to: "/docs/identities", label: "Identity", position: "left", }, { - to: "/docs/permissions", - label: "Permissions", + to: "/docs/oauth2-oidc", + // to: "/docs/federation", // TODO: Use this route + label: "Federation", position: "left", }, { - to: "/docs/federation", - label: "Federation", + to: "/docs/keto", + // to: "/docs/permissions", // TODO: Use this route + label: "Permissions", position: "left", }, { @@ -124,7 +126,8 @@ const config: Config = { position: "left", }, { - to: "/docs/reference", + to: "/docs/reference/api", + // to: "/docs/reference", // TODO: Use this route label: "Reference", position: "left", },