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 +