All checks were successful
test-build / guarddog (push) Successful in 54s
test-build / build (push) Successful in 1m37s
release-image / guarddog (push) Successful in 42s
release-image / build (push) Successful in 1m16s
release-image / semantic-release (push) Successful in 35s
release-image / release-harbor (push) Has been skipped
release-image / release-gitea (push) Has been skipped
35 lines
952 B
Plaintext
35 lines
952 B
Plaintext
---
|
|
title: Documentation
|
|
description: Guides and reference
|
|
hero:
|
|
tagline: Guides and reference
|
|
image:
|
|
file: ../../assets/documentation.svg
|
|
actions:
|
|
- text: Introduction
|
|
link: /reference/introduction/
|
|
icon: right-arrow
|
|
---
|
|
|
|
import { Card, CardGrid, LinkCard } from '@astrojs/starlight/components';
|
|
|
|
## Highlights
|
|
|
|
<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>
|
|
<LinkCard
|
|
title="Get started with the 3D Printer"
|
|
description="Guide for setting up OrcaSlicer"
|
|
href="https://docs.alexlebens.dev/guides/3d-printer/orcaslicer/"
|
|
></LinkCard>
|
|
</CardGrid>
|