mirror of
https://github.com/kogakure/website-astro-stefanimhoff.de.git
synced 2026-02-03 20:15:27 +00:00
10 lines
177 B
TypeScript
10 lines
177 B
TypeScript
import { defineCollection, z } from 'astro:content';
|
|
|
|
export const haiku = defineCollection({
|
|
schema: z.object({
|
|
date: z.date(),
|
|
de: z.string(),
|
|
en: z.string(),
|
|
}),
|
|
});
|