feat: Add comprehensive documentation structure with farming, mycelium, and cloud guides

This commit is contained in:
mik-tf
2025-10-16 08:35:58 -04:00
parent 4f0a8eec6e
commit 98e904384b
23 changed files with 2980 additions and 0 deletions

66
sidebars.js Normal file
View File

@@ -0,0 +1,66 @@
/**
* 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/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',
],
},
],
};
export default sidebars;