Testing the Blog System
This is a test post to verify that our MDX blog system is working correctly. Let's try out various MDX features.
Code Blocks
Here's a TypeScript code block:
interface User {
id: string;
name: string;
email: string;
}
function greetUser(user: User) {
console.log('Hello, ' + user.name + '!');
}
Lists
- First item
- Second item
- Third item
- Unordered list
- With multiple items
- And proper styling
Blockquotes
This is a blockquote to test the styling. It should look nice and stand out from regular text.
Links and Emphasis
You can visit our website or check out our services and solutions.
Tables
| Feature | Status | Notes |
|---|---|---|
| MDX Support | Working | Using next-mdx-remote |
| Syntax Highlighting | Working | Using rehype-prism |
| Image Support | Working | Using next/image |
Images

Custom Components
We can also use custom React components in our MDX posts!