Testing MDX Blog Functionality

Welcome to our first blog post! This is a test to verify that MDX is working correctly with Next.js App Router.

What is this post about?

This post demonstrates:

Testing Basic Markdown

Here's some basic markdown content:

  1. Ordered lists work
  2. Bold text works
  3. Italic text works
  4. Inline code works

Code Blocks

function greet(name) {
  return `Hello, ${name}!`;
}

console.log(greet("MDX Blog"));

Interactive Content (MDX Feature)

Since this is MDX, we can include JSX components:

Note: This is a custom styled callout using Tailwind classes directly in MDX!

Conclusion

If you can see this post with proper formatting, then the MDX blog setup is working correctly!

The blog is now ready for:


Published: August 29, 2024