From c2ad94b04f290b5197a1cc80c98015be9e7b25da Mon Sep 17 00:00:00 2001 From: IwanIDev Date: Sat, 21 Mar 2026 13:47:35 +0000 Subject: feat: add blog post listing and UI components for the blog --- src/content/config.ts | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/content/config.ts (limited to 'src/content/config.ts') diff --git a/src/content/config.ts b/src/content/config.ts new file mode 100644 index 0000000..3886d49 --- /dev/null +++ b/src/content/config.ts @@ -0,0 +1,14 @@ +import { defineCollection, z } from 'astro:content'; + +const blog = defineCollection({ + schema: z.object({ + title: z.string(), + description: z.string(), + publishDate: z.coerce.date(), + author: z.string(), + }), +}); + +export const collections = { + blog, +}; -- cgit