blog posts work differently from handbook/docs pages. they use plain markdown (not MDX) and have additional frontmatter for display on the blog listing.
.md file in content/blog/my-post.md → /blog/my-post---
title: "your post title"
date: "January 2026"
image: "/your-image.jpg"
size: "large"
---
public/ folderlarge - full width, prominent placementmedium - half widthsmall - quarter widthpublic/ folderblog-your-post-name.jpg/blog-your-post-name.jpgrecommended image dimensions vary by size - larger cards need higher resolution images.
write standard markdown below the frontmatter:
---
title: "my post"
date: "January 2026"
image: "/blog-my-post.jpg"
size: "medium"
---
your introduction paragraph here.
## a subheading
more content with **bold** and *italic* text.
- bullet points
- work too
| blog | handbook/docs | |
|---|---|---|
| format | .md | .mdx |
| React components | no | yes |
| frontmatter | title, date, image, size | title only |
| ordering | by date | by numeric prefix |
| sidebar | none | auto-generated |