Next.jsMDXBlog
Welcome to My Blog
This is an example blog post to demonstrate the MDX blog system.
Your Name1 min read
Welcome to My Blog
This is an example blog post written in MDX. You can use markdown syntax and also include React components!
Features
- Write posts in Markdown/MDX
- Syntax highlighting for code blocks
- Tags and categories
- Reading time calculation
- Full Next.js integration
Code Example
Here's a code example with syntax highlighting:
export function greet(name: string): string {
return `Hello, ${name}!`;
}
greet("World");
What's Next?
Create more posts in the content/posts/ directory. Each file should:
- Have frontmatter at the top (between
---) - Include title, date, excerpt, tags, and author
- Write your content in Markdown below the frontmatter
Happy writing! 🚀