70 lines
1.9 KiB
JavaScript
70 lines
1.9 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 = {
|
|
mainSidebar: [
|
|
'intro',
|
|
{
|
|
type: 'category',
|
|
label: 'Farming',
|
|
link: {
|
|
type: 'generated-index',
|
|
title: 'ThreeFold Farming',
|
|
description: 'Learn how to become a ThreeFold farmer by deploying nodes and earning rewards for contributing capacity to the decentralized grid.',
|
|
slug: '/farming',
|
|
},
|
|
items: [
|
|
'farming/overview',
|
|
'farming/buy-node',
|
|
'farming/setup',
|
|
],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Mycelium Network',
|
|
link: {
|
|
type: 'generated-index',
|
|
title: 'Mycelium Network',
|
|
description: 'Discover Mycelium - an IPv6 overlay network that provides secure, peer-to-peer connectivity for your devices.',
|
|
slug: '/mycelium-network',
|
|
},
|
|
items: [
|
|
'mycelium-network/overview',
|
|
'mycelium-network/architecture',
|
|
'mycelium-network/install',
|
|
'mycelium-network/quick-start',
|
|
],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Mycelium Cloud',
|
|
link: {
|
|
type: 'generated-index',
|
|
title: 'Mycelium Cloud',
|
|
description: 'Deploy and manage Kubernetes clusters on the decentralized ThreeFold Grid with Mycelium Cloud.',
|
|
slug: '/mycelium-cloud',
|
|
},
|
|
items: [
|
|
'mycelium-cloud/overview',
|
|
'mycelium-cloud/getting-started',
|
|
'mycelium-cloud/tutorial',
|
|
'mycelium-cloud/kubernetes-basics',
|
|
'mycelium-cloud/faq',
|
|
],
|
|
},
|
|
],
|
|
};
|
|
|
|
export default sidebars;
|