Example Article
This is an example article to demonstrate the MDX-based writing system. You can write your content in Markdown format with full support for React components.
What is MDX?
MDX is a format that lets you seamlessly write JSX in your Markdown documents. This means you can import and use React components directly in your articles.
Features
Here are some features you can use in your articles:
- Bold text for emphasis
- Italic text for subtle emphasis
Inline codefor technical terms- Links to external resources
Code Blocks
You can include code blocks with syntax highlighting:
function greet(name: string): string {
return `Hello, ${name}!`;
}
console.log(greet("World"));
Lists
Ordered lists work too:
- First item
- Second item
- Third item
Images
You can add images by placing them in the same directory as your article:

Conclusion
TBD