82 lines
2.2 KiB
JavaScript
82 lines
2.2 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',
|
|
'we_are_different',
|
|
'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/token-system',
|
|
'core-concepts/burning',
|
|
// 'core-concepts/liquidity-pool',
|
|
],
|
|
},
|
|
{
|
|
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/overview',
|
|
'node-economics/explanation',
|
|
'node-economics/bids',
|
|
],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Roadmap',
|
|
link: {
|
|
type: 'generated-index',
|
|
title: 'Roadmap',
|
|
description: 'Explore the future development and key milestones for the ThreeFold Grid.',
|
|
slug: '/roadmap',
|
|
},
|
|
items: [
|
|
// 'roadmap/liquidity-pools-overview',
|
|
'roadmap/position-based-lp',
|
|
'roadmap/dutch-auction-exit',
|
|
],
|
|
},
|
|
'faq',
|
|
{
|
|
type: 'category',
|
|
label: 'Appendix',
|
|
link: {
|
|
type: 'generated-index',
|
|
title: 'Appendix',
|
|
description: 'Additional information and supporting documents.',
|
|
slug: '/appendix',
|
|
},
|
|
items: [
|
|
'appendix/yin-yang-currency',
|
|
],
|
|
},
|
|
],
|
|
};
|
|
|
|
export default sidebars; |