Skip to content
introblog

Hello World - Welcome to My Blog

January 28, 2026·1 min read
Cover image for Hello World - Welcome to My Blog

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!