Hello World
Welcome to my blog! This post demonstrates the MDX blog system.
Features
This MDX-powered blog supports:
- Markdown formatting
- React components
- Syntax highlighting
- Frontmatter metadata
- Reading time calculation
Code Example
TSX
1const greeting = "Hello, World!";
2
3export default function BlogPost() {
4 return <h1>{greeting}</h1>;
5}Stay tuned for more content!
