Skip to content

Commit

Permalink
adding sidebar
Browse files Browse the repository at this point in the history
Signed-off-by: chaosinthecrd <[email protected]>
  • Loading branch information
ChaosInTheCRD committed Feb 20, 2024
1 parent c6ff8be commit 2aedc52
Showing 1 changed file with 60 additions and 0 deletions.
60 changes: 60 additions & 0 deletions sidebars.js
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 2aedc52

Please sign in to comment.