import { defineConfig } from 'astro/config'; import starlight from '@astrojs/starlight'; // https://astro.build/config export default defineConfig({ integrations: [ starlight({ title: 'Project INCA Docs', social: { github: 'https://github.com/threefoldtech', }, sidebar: [ { label: 'Start Here', items: [ // Each item here is one entry in the navigation menu. { label: 'Getting Started', link: '/start_here/getting_started/' }, ], }, { label: 'Guides', items: [ // Each item here is one entry in the navigation menu. { label: 'Install ThreeFold Connect', link: '/guides/threefold_connect/' }, { label: 'Create an INCA Farm', link: '/guides/create_farm/' }, { label: 'Get INCA Nodes', link: '/guides/get_inca_nodes/' }, { label: 'Connect Your Nodes', link: '/guides/connect_the_nodes/' }, { label: 'Manage Your Rewards', link: '/guides/manage_rewards/' }, ], }, { label: 'Resources', items: [ // Each item here is one entry in the navigation menu. { label: 'Introduction', link: '/resources/resources_introduction/' }, { label: 'Node Status bot', link: '/resources/node_status_bot/' }, { label: 'Farmerbot', link: '/resources/farmerbot/' }, ], }, { label: 'References', items: [ // Each item here is one entry in the navigation menu. { label: 'Glossary', link: '/references/glossary/' }, ], }, ], }), ], });