feat: update index page

This commit is contained in:
2026-02-08 15:55:50 -06:00
parent 337f94de8b
commit a5ef209186

View File

@@ -1,36 +1,33 @@
--- ---
title: Welcome to Starlight title: Documentation for my Homelab
description: Get started building your docs site with Starlight. description: Guides and reference for my homelab infrastructure.
template: splash template: splash
hero: hero:
tagline: Congrats on setting up a new Starlight project! tagline: Guides and reference for my homelab infrastructure.
image: image:
file: ../../assets/autumn_mountain.png file: ../../assets/autumn_mountain.png
actions: actions:
- text: Example Guide - text: Introduction
link: /guides/example/ link: /reference/example/
icon: right-arrow icon: right-arrow
- text: Read the Starlight docs
link: https://starlight.astro.build
icon: external
variant: minimal
--- ---
import { Card, CardGrid } from '@astrojs/starlight/components'; import { Card, CardGrid, LinkCard } from '@astrojs/starlight/components';
## Next steps ## Hightlights
<CardGrid stagger> <CardGrid stagger>
<Card title="Update content" icon="pencil">
Edit `src/content/docs/index.mdx` to see this page change.
</Card>
<Card title="Add new content" icon="add-document"> <Card title="Add new content" icon="add-document">
Add Markdown or MDX files to `src/content/docs` to create new pages. Add Markdown or MDX files to `src/content/docs` to create new pages.
</Card> </Card>
<Card title="Configure your site" icon="setting"> <LinkCard
Edit your `sidebar` and other config in `astro.config.mjs`. title="Homepage"
</Card> description="Visit my homepage to see what I'm up to and learn more about me."
<Card title="Read the docs" icon="open-book"> href="https://www.alexlebens.dev"
Learn more in [the Starlight Docs](https://starlight.astro.build/). ></LinkCard>
</Card> <LinkCard
title="Read the Starlight docs"
description="This site is built with Starlight, the Astro documentation theme. Check out the docs to learn more."
href="https://starlight.astro.build/"
></LinkCard>
</CardGrid> </CardGrid>