docs/sidebarsProjekty.js

51 řádky
1.1 KiB
JavaScript
Surový Normální zobrazení Historie

2022-10-05 17:08:22 +02:00
const sidebars = {
// By default, Docusaurus generates a sidebar from the docs folder structure
//tutorialSidebar: [{type: 'autogenerated', dirName: '.'}],
// But you can create a sidebar manually
doc: [
'README',
{
type: 'category',
label: 'Hostované služby',
2022-12-06 09:26:20 +01:00
//link: { type: 'doc', id: 'hosting' },
collapsed: false,
collapsible: false,
2022-10-05 17:08:22 +02:00
items: [
{ type: 'autogenerated', dirName: 'hosting' }
]
},
{
type: 'category',
label: 'Ostatní služby',
2022-12-06 09:26:20 +01:00
collapsed: false,
collapsible: false,
2022-10-05 17:08:22 +02:00
items: [
'brightid-verifikace',
]
},
{
type: 'category',
2022-10-06 11:56:28 +02:00
label: 'Dokumentace',
2022-12-06 09:26:20 +01:00
collapsed: false,
collapsible: false,
2022-10-05 17:08:22 +02:00
items: [
2022-10-06 11:56:28 +02:00
{
type: 'link',
label: 'DeFi Toolkit',
href: 'https://hackmd.io/@gweicz/defi-toolkit'
},
{
type: 'link',
label: 'DAO Příručka',
href: 'https://dao.gwei.cz/'
},
2022-10-05 17:08:22 +02:00
]
},
],
};
module.exports = sidebars;