34 lines
990 B
Plaintext
34 lines
990 B
Plaintext
---
|
|
title: Documentation for my Homelab
|
|
description: Guides and reference for my homelab infrastructure.
|
|
template: splash
|
|
hero:
|
|
tagline: Guides and reference for my homelab infrastructure.
|
|
image:
|
|
file: ../../assets/autumn_mountain.png
|
|
actions:
|
|
- text: Introduction
|
|
link: /reference/example/
|
|
icon: right-arrow
|
|
---
|
|
|
|
import { Card, CardGrid, LinkCard } from '@astrojs/starlight/components';
|
|
|
|
## Hightlights
|
|
|
|
<CardGrid stagger>
|
|
<Card title="Add new content" icon="add-document">
|
|
Add Markdown or MDX files to `src/content/docs` to create new pages.
|
|
</Card>
|
|
<LinkCard
|
|
title="Homepage"
|
|
description="Visit my homepage to see what I'm up to and learn more about me."
|
|
href="https://www.alexlebens.dev"
|
|
></LinkCard>
|
|
<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>
|