/** * 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;