The mount doesn't care what wavelength it's pointing at — RF, optical, thermal, IR. Updated hero tagline, page description, and site-wide description to reflect this.
46 lines
1.2 KiB
JavaScript
46 lines
1.2 KiB
JavaScript
import { defineConfig } from 'astro/config';
|
|
import starlight from '@astrojs/starlight';
|
|
|
|
export default defineConfig({
|
|
telemetry: false,
|
|
devToolbar: { enabled: false },
|
|
integrations: [
|
|
starlight({
|
|
title: "Birdcage",
|
|
description: 'A generic AZ/EL positioner that doesn\'t care about wavelength',
|
|
social: [
|
|
{
|
|
icon: 'github',
|
|
label: 'GitHub',
|
|
href: 'https://github.com/saveitforparts/Travler_Rotor',
|
|
},
|
|
],
|
|
customCss: ['./src/styles/custom.css'],
|
|
sidebar: [
|
|
{ label: 'Home', link: '/' },
|
|
{
|
|
label: 'Getting Started',
|
|
autogenerate: { directory: 'getting-started' },
|
|
},
|
|
{
|
|
label: 'Guides',
|
|
autogenerate: { directory: 'guides' },
|
|
},
|
|
{
|
|
label: 'Reference',
|
|
autogenerate: { directory: 'reference' },
|
|
},
|
|
{
|
|
label: 'Understanding',
|
|
autogenerate: { directory: 'understanding' },
|
|
},
|
|
{
|
|
label: 'Project Journal',
|
|
badge: { text: 'Living', variant: 'note' },
|
|
autogenerate: { directory: 'journal' },
|
|
},
|
|
],
|
|
}),
|
|
],
|
|
});
|