Blog collection
Schema documentation for the Blog content collection.
The `blog` collection stores blog posts as .md or .mdx files.
Location: `src/content/blog`
Schema
| Property | Type | Default | Description |
|---|---|---|---|
| `title` | `string` | - | The title of the blog post. |
| `description` | `string` | - | A brief description for SEO and previews. |
| `featuredImage` | `image` | - | Main image for the blog post. |
| `category` | `enum` | - | Must be one of the defined `BLOG_CATEGORIES`. |
| `author` | `string` | - | Name of the author. |
| `createdAt` | `date` | - | Publication date. |
| `updatedAt` | `date` | `undefined` | Last update date. |