# Welcome to your docs

import { Card, CardGrid, LinkCard } from '@astrojs/starlight/components';

## Explore the docs

<CardGrid>
	<LinkCard
		title="Get started"
		href="/get-started/introduction/"
		description="Introduction, quickstart, and authentication."
	/>
	<LinkCard
		title="Guides"
		href="/guides/example/"
		description="Task-oriented walkthroughs."
	/>
	<LinkCard
		title="Concepts"
		href="/concepts/how-it-works/"
		description="The mental model behind the product."
	/>
	<LinkCard
		title="API reference"
		href="/api/"
		description="Endpoints, schemas, and errors."
	/>
	<LinkCard
		title="Changelog"
		href="/changelog/"
		description="Notable changes, newest first."
	/>
</CardGrid>

## Make it your own

<CardGrid>
	<Card title="Edit content" icon="pencil">
		Pages live in `src/content/docs/`. Edit them in Markdown or MDX.
	</Card>
	<Card title="Wire up the sidebar" icon="setting">
		Configure groups and order in `astro.config.mjs`.
	</Card>
	<Card title="Bring your own API spec" icon="document">
		Replace `src/schemas/api.yaml` with your OpenAPI document to regenerate
		the `/api/` reference.
	</Card>
	<Card title="Read the Starlight docs" icon="open-book">
		The source of truth for everything this template uses:
		[starlight.astro.build](https://starlight.astro.build/).
	</Card>
</CardGrid>