Normal Blog Post

1 min read

Welcome to a Normal Blog Post

This is a basic blog post written in MDX, designed to demonstrate how a standard content entry looks in the system. You can write freely using Markdown, add custom components, and manage metadata from the frontmatter above.


Why Use MDX?

MDX allows you to blend Markdown content with React components, giving you flexibility and composability. For example, here’s a quote:

“Good writing is clear thinking made visible.” — Bill Wheeler


Example Code Block

export function greet(name: string) {
  return `Hello, ${name}`;
}