bujo et modification de texte

This commit is contained in:
2026-01-18 21:50:42 +04:00
parent a581da5d50
commit 088550a85a
32 changed files with 2544 additions and 62 deletions

View File

@@ -36,8 +36,19 @@ const codexCollection = defineCollection({
}),
});
const bujoCollection = defineCollection({
type: 'content',
schema: z.object({
title: z.string(),
publishDate: z.date(),
tags: z.array(z.string()),
period: z.string().optional(),
}),
});
export const collections = {
journal: journalCollection,
logs: logsCollection,
codex: codexCollection,
bujo: bujoCollection,
};