docs: initialized

This commit is contained in:
Neko Ayaka
2025-02-08 23:22:30 +07:00
parent 4ab316c15e
commit 7e5e9f6b23
21 changed files with 2270 additions and 105 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 96 KiB

+7
View File
@@ -0,0 +1,7 @@
import { docsLoader } from '@astrojs/starlight/loaders'
import { docsSchema } from '@astrojs/starlight/schema'
import { defineCollection } from 'astro:content'
export const collections = {
docs: defineCollection({ loader: docsLoader(), schema: docsSchema() }),
}
+6
View File
@@ -0,0 +1,6 @@
---
title: Getting Started
description: Get to know the UI of Project Airi
---
WIP.
+37
View File
@@ -0,0 +1,37 @@
---
title: Welcome to Project Airi
description: LLM powered AI VTuber like Neuro-sama
template: splash
hero:
tagline: A LLM powered AI VTuber like Neuro-sama, but Open Source
image:
file: ../../assets/houston.webp
actions:
- text: Try it!
link: https://airi.moeru.ai
icon: external
- text: Build together
link: /guides/
icon: right-arrow
variant: minimal
---
{/*
import { Card, CardGrid } from '@astrojs/starlight/components';
## 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>
</CardGrid> */}