From 6b261363e48ee28da63ecc4a197fd77410b042ad Mon Sep 17 00:00:00 2001 From: Nico Flaig Date: Fri, 3 May 2024 11:29:28 +0100 Subject: [PATCH] docs: restore docs pages lost during docusaurus migration (#6725) --- docs/sidebars.ts | 29 ++++++++++++++++++++++++++++- 1 file changed, 28 insertions(+), 1 deletion(-) diff --git a/docs/sidebars.ts b/docs/sidebars.ts index 30ef55c60b81..068325d946f1 100644 --- a/docs/sidebars.ts +++ b/docs/sidebars.ts @@ -4,6 +4,11 @@ const sidebars: SidebarsConfig = { tutorialSidebar: [ "index", "introduction", + { + type: "doc", + label: "Security", + id: "security", + }, { type: "category", label: "Getting Started", @@ -37,7 +42,19 @@ const sidebars: SidebarsConfig = { { type: "category", label: "Light Client and Prover", - items: ["lightclient-prover/lightclient-cli", "lightclient-prover/lightclient", "lightclient-prover/prover"], + items: [ + "lightclient-prover/lightclient-cli", + { + type: "doc", + label: "Light Client", + id: "lightclient-prover/lightclient", + }, + { + type: "doc", + label: "Prover", + id: "lightclient-prover/prover", + }, + ], }, { type: "category", @@ -49,7 +66,17 @@ const sidebars: SidebarsConfig = { type: "category", label: "Contributing", items: [ + { + type: "doc", + label: "Getting Started", + id: "contribution/getting-started", + }, "contribution/depgraph", + { + type: "doc", + label: "Dev CLI Reference", + id: "contribution/dev-cli", + }, { type: "category", label: "Testing",