Docs Only Site

This commit is contained in:
Ryan Malloy 2025-03-17 17:22:56 -06:00
parent 794e6d65e2
commit c350980458
4 changed files with 8 additions and 22 deletions

View File

@ -1,2 +1,3 @@
src/components/ui/* src/components/ui/*
hooks/use-toast.ts hooks/use-toast.ts
.git/*

View File

@ -15,14 +15,14 @@ export default defineConfig({
}), starlight({ }), starlight({
plugins: [ plugins: [
starlightThemeBlack({ starlightThemeBlack({
navLinks: [{ // optional // navLinks: [{ // optional
label: 'Docs', // label: 'Docs',
link: '/docs', // link: '/',
}], // }],
footerText: //optional // footerText: //optional
'Built & designed by [Supported Systems](https://supported.systems)' // 'Built & designed by [Supported Systems](https://supported.systems)'
}) })
], ],
title: "My Website Title", title: "Website Link",
})], })],
}); });

View File

@ -1,15 +0,0 @@
---
import '@/styles/globals.css'
import Layout from '../layouts/Layout.astro';
import { Button } from "@/components/ui/button"
---
<Layout title="Welcome to Astro.">
<main>
<p>Start prompting</p>
<p>
Starlight is setup <a href="/docs">/docs</a>
</p>
</main>
</Layout>