Welcome to My Blog
This is a simple blog post created for testing purposes. It includes various elements such as headings, paragraphs, lists, and code blocks.
Introduction
MDX allows you to write JSX in Markdown files, making it easy to create interactive blog posts. Here's an example of a simple blog post.
Features
- Easy to write: Write your content in Markdown and include JSX components.
- Interactive: Add interactive elements using React components.
- Customizable: Customize the appearance and behavior of your blog posts.
Code Example
Here's a simple code example to demonstrate syntax highlighting:
const greet = (name) => {
return `Hello, ${name}!`;
};
console.log(greet('World'));