docs/sidebars.js

163 lines
3.5 KiB
JavaScript

/**
* Creating a sidebar enables you to:
- create an ordered group of docs
- render a sidebar for each doc of that group
- provide next/previous navigation
The sidebars can be generated from the filesystem, or explicitly defined here.
Create as many sidebars as you want.
*/
// @ts-check
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
// By default, Docusaurus generates a sidebar from the docs folder structure
//tutorialSidebar: [{type: 'autogenerated', dirName: '.'}],
// But you can create a sidebar manually
tutorialSidebar: [
'index',
{
type: "html",
value: '<span class="sidebar-divider" />',
},
{
type: "html",
className: "sidebar-title",
value: "About Web3Privacy Now",
defaultStyle: true,
},
'manifesto',
'roadmap',
'history',
'brand',
{
type: "html",
value: '<span class="sidebar-divider" />',
},
{
type: "html",
className: "sidebar-title",
value: "Projects",
defaultStyle: true,
},
{
type: "category",
label: "Research",
link: { type: 'doc', id: 'research/index'},
items: [{type: 'autogenerated', dirName: 'research'}],
},
{
type: "category",
label: "Events",
link: {type: 'doc', id: 'events/index'},
items: [{type: 'autogenerated', dirName: 'events'}],
},
'projects/privacy-explorer',
/*{
type: "category",
label: "Privacy News",
link: {type: 'doc', id: 'news/week-in-the-privacy'},
items: [{type: 'autogenerated', dirName: 'news'}],
},*/
'news/week-in-the-privacy',
{
type: "category",
label: "Future concepts",
items: [
'projects/privacy-tech-awards',
],
},
{
type: "html",
value: '<span class="sidebar-divider" />',
},
{
type: "html",
className: "sidebar-title",
value: "Tools",
defaultStyle: true,
},
'git',
'communication',
'workgroups',
{
type: "html",
value: '<span class="sidebar-divider" />',
},
{
type: "html",
className: "sidebar-title",
value: "Community",
defaultStyle: true,
},
'follow-us',
'get-involved',
{
type: "category",
label: "Contributors Guide",
link: {type: 'doc', id: 'contributors/index'},
items: [
],
},
{
type: "category",
label: "Membership",
link: {type: 'doc', id: 'membership/index'},
items: [
'membership/personal-benefits',
'membership/org-benefits',
'membership/survival-kit',
],
},
'donate',
'code-of-conduct',
{
type: "html",
value: '<span class="sidebar-divider" />',
},
{
type: "html",
className: "sidebar-title",
value: "Organization",
defaultStyle: true,
},
{
type: "category",
label: "Governance",
link: {type: 'doc', id: 'governance'},
items: [
'congress',
{
type: "category",
label: "Core Team",
link: {type: 'doc', id: 'core-team/index'},
items: [
'core-team/multisig'
],
},
'association/index',
'guild',
],
},
'contacts',
/*{
type: "html",
value: '<span class="sidebar-divider" />',
},
{
type: "html",
className: "sidebar-title",
value: "Others",
defaultStyle: true,
},
'funding-requests',*/
],
};
export default sidebars;