Untitled
Blog Posts
This directory contains all blog posts in MDX format.
Creating a New Blog Post
- Create a new
.mdxfile in this directory with a descriptive filename (e.g.,my-awesome-post.mdx) - Add frontmatter at the top of the file:
---
title: "Your Blog Post Title"
description: "A brief description of your post"
date: "2024-01-15"
author: "Your Name" (optional)
---
# Your Blog Post Title
Your content here...
- Write your content using Markdown/MDX syntax
- The post will automatically appear on the blog listing page at
/blog - The post will be accessible at
/blog/your-filename
Frontmatter Fields
title(required): The title of your blog postdescription(required): A brief description for SEO and previewsdate(required): Publication date in ISO format (YYYY-MM-DD)author(optional): Author name
MDX Features
You can use:
- Standard Markdown syntax
- React components
- Code blocks with syntax highlighting
- GitHub Flavored Markdown (tables, strikethrough, etc.)
Example
See welcome-to-findarunclub.mdx for a complete example.