All checks were successful
release-image / guarddog (push) Successful in 19s
release-image / build (push) Successful in 30s
release-image / semantic-release (push) Successful in 16s
release-image / release-harbor (push) Has been skipped
release-image / release-gitea (push) Has been skipped
renovate / renovate (push) Successful in 23s
Co-authored-by: semantic-release-bot <semantic-release-bot@martynus.net> Co-authored-by: Renovate Bot <renovate-bot@alexlebens.net> Reviewed-on: #195
30 lines
842 B
Plaintext
30 lines
842 B
Plaintext
---
|
|
title: Documentation for my Homelab
|
|
description: Guides and reference for my homelab infrastructure.
|
|
hero:
|
|
tagline: Guides and reference for my homelab infrastructure.
|
|
image:
|
|
file: ../../assets/autumn_mountain.png
|
|
actions:
|
|
- text: Introduction
|
|
link: /reference/introduction/
|
|
icon: right-arrow
|
|
---
|
|
|
|
import { Card, CardGrid, LinkCard } from '@astrojs/starlight/components';
|
|
|
|
## Hightlights
|
|
|
|
<CardGrid stagger>
|
|
<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>
|