Welcome to My Blog

February 2, 2025

mdxnextjswelcome

Welcome to My Blog

This is your first blog post! It's written in MDX, which means you can use both Markdown and React components together.

What is MDX?

MDX lets you use JSX in your markdown content. Here are some features:

Getting Started

You can create new blog posts by adding .mdx files to the app/blogs directory. Each file needs to export a metadata object with:

Example Post Structure

export const metadata = {
  title: "Your Title",
  description: "Your description",
  date: "2025-02-02",
  tags: ["tag1", "tag2"],
};

# Your Title

Your content here...

That's it! Your blog is now ready to use with MDX.