Some checks failed
Deploy to GitHub Pages / Deploy to GitHub Pages (push) Has been cancelled
- Based on working minting_plan repository - Configured for threefold.info/economics deployment - Added ops documentation for server deployment - Updated baseUrl and URL configuration
56 lines
1.6 KiB
JavaScript
56 lines
1.6 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',
|
|
'implementation-roadmap',
|
|
{
|
|
type: 'category',
|
|
label: 'Core Concepts',
|
|
link: {
|
|
type: 'generated-index',
|
|
title: 'Core Finance Concepts',
|
|
description: 'Understand the fundamental mechanisms of the TFT minting transition plan, including token systems, liquidity pools, and exit mechanisms.',
|
|
slug: '/core-concepts',
|
|
},
|
|
items: [
|
|
'core-concepts/liquidity-pools-overview',
|
|
'core-concepts/token-system',
|
|
'core-concepts/position-based-lp',
|
|
'core-concepts/dutch-auction-exit',
|
|
'core-concepts/yin-yang-currency',
|
|
],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Node Economics & Pricing',
|
|
link: {
|
|
type: 'generated-index',
|
|
title: 'Node Economics & Pricing',
|
|
description: 'Understand the economic model for TFGrid farmers, including node specifications, pricing structures, income projections, and ThreeFold\'s committed capacity bids.',
|
|
slug: '/node-economics',
|
|
},
|
|
items: [
|
|
'node-economics/slices-overview',
|
|
'node-economics/node-specifications',
|
|
'node-economics/pricing-model',
|
|
'node-economics/tf-bid-packages',
|
|
],
|
|
},
|
|
],
|
|
};
|
|
|
|
export default sidebars;
|