Add Coffee Notes collection and page
CI / ci (push) Successful in 29s
CI / ci (pull_request) Successful in 28s
Docker / docker (pull_request) Successful in 17s

This commit is contained in:
2026-03-07 16:41:46 +01:00
parent 2ae98e8857
commit faea831bef
7 changed files with 372 additions and 1 deletions
+10 -1
View File
@@ -17,4 +17,13 @@ const blog = defineCollection({
}),
});
export const collections = { blog };
const coffee = defineCollection({
type: "content",
schema: z.object({
title: z.string().optional(),
date: z.coerce.date(),
draft: z.boolean().optional().default(false),
}),
});
export const collections = { blog, coffee };