diff --git a/website/src/components/BaseHead.astro b/website/src/components/BaseHead.astro index d0b6943..360c4bb 100644 --- a/website/src/components/BaseHead.astro +++ b/website/src/components/BaseHead.astro @@ -1,7 +1,7 @@ --- interface Props { title: string; - description: string; + description?: string; image?: string; } diff --git a/website/src/content.config.ts b/website/src/content.config.ts index 1a2452d..133e56c 100644 --- a/website/src/content.config.ts +++ b/website/src/content.config.ts @@ -10,7 +10,7 @@ const blog = defineCollection({ schema: z.object({ title: z.string(), hidden: z.optional(z.boolean()), - description: z.string(), + description: z.optional(z.string()), pubDate: z.date(), updatedDate: z.optional(z.date()), }),