docs.status.network/sidebars.ts

157 lines
3.5 KiB
TypeScript
Raw Normal View History

2024-10-24 21:09:46 +05:30
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',
2025-02-08 00:08:16 +05:30
id: 'tokenomics/karma-token',
label: '💠 Karma Token',
2024-10-24 21:09:46 +05:30
},
],
},
{
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',
2025-02-07 13:57:04 +05:30
collapsed: false,
2024-10-24 21:09:46 +05:30
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',
2025-02-07 13:57:04 +05:30
collapsed: false,
2024-10-24 21:09:46 +05:30
items: [
{
type: 'doc',
id: 'other/official-links',
label: '🔗 Official Links',
},
],
},
],
};
export default sidebars;