mirror of
https://github.com/thiloho/aurora.git
synced 2025-11-22 03:21:35 +01:00
19 lines
409 B
TypeScript
19 lines
409 B
TypeScript
|
|
import { z, defineCollection } from "astro:content";
|
||
|
|
|
||
|
|
export const collections = {
|
||
|
|
home: defineCollection({
|
||
|
|
schema: z.object({
|
||
|
|
title: z.string(),
|
||
|
|
description: z.string(),
|
||
|
|
}),
|
||
|
|
}),
|
||
|
|
blog: defineCollection({
|
||
|
|
schema: z.object({
|
||
|
|
title: z.string(),
|
||
|
|
publicationDate: z.date(),
|
||
|
|
description: z.string(),
|
||
|
|
workInProgress: z.boolean().default(false),
|
||
|
|
}),
|
||
|
|
}),
|
||
|
|
};
|