docs: add initial Mediary user guide

This commit is contained in:
2026-08-01 10:10:28 +02:00
commit a915c44d49
20 changed files with 511 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
import { defineCollection } from 'astro:content';
import { docsLoader } from '@astrojs/starlight/loaders';
import { docsSchema } from '@astrojs/starlight/schema';
export const collections = {
docs: defineCollection({
loader: docsLoader(),
schema: docsSchema(),
}),
};