2024-06-11 04:46:31 +00:00
|
|
|
import { defineConfig } from 'astro/config';
|
|
|
|
import starlight from '@astrojs/starlight';
|
|
|
|
|
|
|
|
// https://astro.build/config
|
|
|
|
export default defineConfig({
|
|
|
|
integrations: [
|
|
|
|
starlight({
|
2024-06-14 16:30:44 +00:00
|
|
|
title: 'Project INCA Docs',
|
2024-06-11 04:46:31 +00:00
|
|
|
social: {
|
2024-06-14 16:30:44 +00:00
|
|
|
github: 'https://github.com/threefoldtech',
|
2024-06-19 14:45:30 +00:00
|
|
|
telegram: 'https://t.me/threefold',
|
|
|
|
'x.com': 'https://x.com/threefold_io',
|
2024-06-11 04:46:31 +00:00
|
|
|
},
|
|
|
|
sidebar: [
|
|
|
|
{
|
2024-06-14 16:30:44 +00:00
|
|
|
label: 'Start Here',
|
2024-06-11 04:46:31 +00:00
|
|
|
items: [
|
|
|
|
// Each item here is one entry in the navigation menu.
|
2024-06-14 16:30:44 +00:00
|
|
|
{ label: 'Getting Started', link: '/start_here/getting_started/' },
|
2024-06-11 04:46:31 +00:00
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
2024-06-17 21:41:11 +00:00
|
|
|
label: 'Steps',
|
2024-06-17 19:51:51 +00:00
|
|
|
items: [
|
|
|
|
// Each item here is one entry in the navigation menu.
|
2024-06-17 21:36:32 +00:00
|
|
|
{ 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/' },
|
2024-06-17 19:51:51 +00:00
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: 'Resources',
|
|
|
|
items: [
|
|
|
|
// Each item here is one entry in the navigation menu.
|
2024-06-17 21:36:32 +00:00
|
|
|
{ label: 'Introduction', link: '/resources/resources_introduction/' },
|
2024-06-17 19:51:51 +00:00
|
|
|
{ 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/' },
|
2024-06-17 21:41:11 +00:00
|
|
|
{ label: 'Disclaimer', link: '/references/disclaimer/' },
|
2024-06-17 19:51:51 +00:00
|
|
|
],
|
2024-06-11 04:46:31 +00:00
|
|
|
},
|
|
|
|
],
|
2024-06-19 16:56:16 +00:00
|
|
|
head: [
|
|
|
|
{
|
|
|
|
tag: 'script',
|
|
|
|
attrs: {
|
|
|
|
src: 'https://git.ourworld.tf/tfgrid/info_tfgrid/raw/branch/development/docs_projectinca/crisp.js',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
2024-06-11 04:46:31 +00:00
|
|
|
}),
|
|
|
|
],
|
|
|
|
});
|