This repository has been archived by the owner on Dec 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
30 additions
and
16 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,50 @@ | ||
--- | ||
title: Welcome to Starlight | ||
description: Get started building your docs site with Starlight. | ||
title: RIOT 2024 SoSe NAME_HERE Docs | ||
description: Our documentation site for NAME_HERE for the RIOT 2024 SoSe project. | ||
template: splash | ||
hero: | ||
tagline: Congrats on setting up a new Starlight project! | ||
tagline: Our documentation site for NAME_HERE for the RIOT 2024 SoSe project. | ||
image: | ||
file: ../../assets/houston.webp | ||
file: ../../assets/riot-logo-large.png | ||
actions: | ||
- text: Example Guide | ||
link: /guides/example/ | ||
- text: Project Documentation | ||
link: /docs/ | ||
icon: right-arrow | ||
variant: primary | ||
- text: Read the Starlight docs | ||
link: https://starlight.astro.build | ||
- text: Read Riot OS documentation | ||
link: https://www.riot-os.org/branding.html | ||
icon: external | ||
--- | ||
|
||
import { Card, CardGrid } from '@astrojs/starlight/components'; | ||
|
||
# The Team | ||
|
||
### Group A - NAME_HERE | ||
|
||
- [Member 1]() | ||
- [Member 2]() | ||
- [Member 3]() | ||
|
||
### Group B - NAME_HERE | ||
|
||
- [Member 1]() | ||
- [Member 2]() | ||
- [Member 3]() | ||
|
||
### Group C - NAME_HERE | ||
|
||
- [Member 1]() | ||
- [Member 2]() | ||
- [Member 3]() | ||
|
||
## Next steps | ||
|
||
<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"> | ||
Add Markdown or MDX files to `src/content/docs` to create new pages. | ||
</Card> | ||
<Card title="Configure your site" icon="setting"> | ||
Edit your `sidebar` and other config in `astro.config.mjs`. | ||
</Card> | ||
<Card title="Read the docs" icon="open-book"> | ||
Learn more in [the Starlight Docs](https://starlight.astro.build/). | ||
<Card title="Plan?" icon="add-document"> | ||
World Domination of course! | ||
</Card> | ||
</CardGrid> |