import type { SidebarsConfig } from '@docusaurus/plugin-content-docs'; const sidebars: SidebarsConfig = { tutorialSidebar: [ { type: 'category', label: 'INTRODUCTION', collapsed: false, items: [ { type: 'doc', id: 'index', label: '๐Ÿ  Home', }, { type: 'doc', id: 'introduction/quick-start', label: 'โšก Quick Start', }, ], }, { type: 'category', label: 'TOKENOMICS', collapsed: false, items: [ { type: 'doc', id: 'tokenomics/snt-token', label: '๐Ÿ’Ž SNT Token', }, { type: 'doc', id: 'tokenomics/karma-token', label: '๐Ÿ’  Karma Token', }, ], }, { type: 'category', label: 'GENERAL INFO', collapsed: false, items: [ { type: 'doc', id: 'general-info/network-details', label: '๐ŸŒ Network Details', }, { type: 'doc', id: 'general-info/add-status-network', label: 'โž• Add Status Network', }, { type: 'category', label: '๐Ÿก Contract Addresses', collapsed: false, items: [ { type: 'doc', id: 'general-info/contract-addresses/tokens', label: '๐Ÿ’ฐ Tokens', }, { type: 'doc', id: 'general-info/contract-addresses/testnet-contracts', label: '๐Ÿงช Testnet Contracts', }, ], }, { type: 'category', label: '๐ŸŒ‰ Bridge', collapsed: false, items: [ { type: 'doc', id: 'general-info/bridge/bridging-testnet', label: '๐Ÿงช Bridging Testnet', }, ], }, ], }, { type: 'category', label: 'TOOLS', collapsed: false, items: [ { type: 'doc', id: 'tools/rpc', label: '๐Ÿ”Œ RPC', }, { type: 'doc', id: 'tools/bridge', label: '๐ŸŒ‰ Bridge', }, { type: 'doc', id: 'tools/testnet-faucets', label: '๐Ÿšฐ Testnet Faucets', }, { type: 'doc', id: 'tools/block-explorers', label: '๐Ÿ”Ž Block Explorers', }, ], }, { type: 'category', label: 'TUTORIALS', collapsed: false, items: [ { type: 'category', label: '๐Ÿš€ Deploying a Smart Contract', collapsed: false, items: [ { type: 'doc', id: 'tutorials/deploying-contracts/using-hardhat', label: '๐ŸŽฉ Using Hardhat', }, { type: 'doc', id: 'tutorials/deploying-contracts/using-foundry', label: 'โš’๏ธ Using Foundry', }, { type: 'doc', id: 'tutorials/deploying-contracts/using-remix', label: '๐ŸŽ›๏ธ Using Remix', }, ], }, ], }, { type: 'category', label: 'OTHER DOCS', collapsed: false, items: [ { type: 'doc', id: 'other/official-links', label: '๐Ÿ”— Official Links', }, ], }, ], }; export default sidebars;