From e58eee7892723e9150a5a681c0da40eac06d7dc3 Mon Sep 17 00:00:00 2001 From: jon brookes Date: Sun, 13 Jul 2025 13:14:36 +0100 Subject: [PATCH] initial commit --- astro.config.mjs | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/astro.config.mjs b/astro.config.mjs index 9a25601..37dff3b 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -6,14 +6,25 @@ import starlight from '@astrojs/starlight'; export default defineConfig({ integrations: [ starlight({ - title: 'My Docs', - social: [{ icon: 'github', label: 'GitHub', href: 'https://github.com/withastro/starlight' }], + title: 'MinimalViableK8s', + social: [{ icon: 'github', label: 'GitHub', href: 'https://codeberg.org/headshed/infctl-cli' }], sidebar: [ + + { - label: 'Guides', + label: 'MVK', items: [ // Each item here is one entry in the navigation menu. - { label: 'Example Guide', slug: 'guides/example' }, + { label: 'Minimal Viable Kubernetes', slug: 'guides/mvk' }, + ], + }, + { + label: 'infctl', + items: [ + // Each item here is one entry in the navigation menu. + { label: 'Introduction', slug: 'guides/intro' }, + { label: 'Quick Start Guide', slug: 'guides/quick-start' }, + { label: 'Configuration', slug: 'guides/configuration' }, ], }, {