From 2aedc52759dc42a119a388de2a2c42fb9c4ca4a3 Mon Sep 17 00:00:00 2001 From: chaosinthecrd Date: Tue, 20 Feb 2024 11:30:23 +0000 Subject: [PATCH] adding sidebar Signed-off-by: chaosinthecrd --- sidebars.js | 60 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 sidebars.js diff --git a/sidebars.js b/sidebars.js new file mode 100644 index 00000000..e16dd159 --- /dev/null +++ b/sidebars.js @@ -0,0 +1,60 @@ +// @ts-check + +/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */ +const sidebars = { + docsSidebar: [ + { + type: 'doc', + label: 'About', + id: 'README', + }, + { + type: 'category', + label: 'Tutorials', + items: [ + { + type: 'autogenerated', + dirName: 'docs/tutorials', + }, + ], + }, + { + type: 'category', + label: 'Concepts', + items: [ + { + type: 'autogenerated', + dirName: 'docs/concepts', + }, + ], + }, + { + type: 'category', + label: 'Attestor Types', + items: [ + { + type: 'autogenerated', + dirName: 'docs/attestors', + }, + ], + }, + { + type: 'doc', + label: 'Command Line Reference', + id: 'docs/commands', + }, + { + type: 'doc', + label: 'New Contributor Guide', + id: 'CONTRIBUTING', + }, + { + type: 'doc', + label: 'Code of Conduct', + id: 'CODE_OF_CONDUCT', + }, + ], +} + +module.exports = sidebars +