info_tfgrid/docs_projectinca/astro.config.mjs

71 lines
1.7 KiB
JavaScript
Raw Normal View History

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-19 18:46:23 +00:00
discord: 'https://discord.com/invite/NZqKC4jEhD',
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: [
2024-06-19 18:46:23 +00:00
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: [
2024-06-19 18:46:23 +00:00
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: [
2024-06-19 18:46:23 +00:00
{ label: 'How to Use the Bots', link: '/resources/resources_introduction/' },
{ label: 'Node Status Bot', link: '/resources/node_status_bot/' },
2024-06-17 19:51:51 +00:00
{ label: 'Farmerbot', link: '/resources/farmerbot/' },
],
},
{
label: 'References',
items: [
2024-06-19 18:46:23 +00:00
2024-06-17 19:51:51 +00:00
{ 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 18:46:23 +00:00
{
label: 'Legal',
items: [
{ label: 'Terms and Conditions', link: '/legal/terms_and_conditions/' },
{ label: 'Privacy Policy', link: '/legal/privacy_policy/' },
],
},
2024-06-11 04:46:31 +00:00
],
2024-06-19 16:56:16 +00:00
head: [
{
tag: 'script',
attrs: {
2024-06-19 17:12:16 +00:00
src: '/crisp.js',
2024-06-19 16:56:16 +00:00
},
},
],
2024-06-11 04:46:31 +00:00
}),
],
});