← Back to Blog

Untitled

Blog Posts

This directory contains all blog posts in MDX format.

Creating a New Blog Post

  1. Create a new .mdx file in this directory with a descriptive filename (e.g., my-awesome-post.mdx)
  2. 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...
  1. Write your content using Markdown/MDX syntax
  2. The post will automatically appear on the blog listing page at /blog
  3. The post will be accessible at /blog/your-filename

Frontmatter Fields

  • title (required): The title of your blog post
  • description (required): A brief description for SEO and previews
  • date (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.