Welcome to My MDX Page
This is an example of an MDX document. It allows you to write Markdown and embed React components.
Here's a simple React component:
function MyComponent() {
return (
<div>
<h1>Hello from React!</h1>
</div>
);
}
export default MyComponent;
You can also include images:

And create links to other pages: My Other Page.
Let's add a list:
- Item 1
- Item 2
- Item 3
Finally, here's some bold and italic text.
```mdx
---
title: "An Amazing MDX File"
date: "2023-10-27"
---
# Greetings! This is My MDX Page
This serves as a demonstration of an MDX file. With it, you have the power to combine Markdown syntax with embedded React components.
Check out this basic React component:
```jsx
function MyComponent() {
return (
<div>
<h1>Greetings from React!</h1>
</div>
);
}
export default MyComponent;
You're able to incorporate images as well:

And you can generate hyperlinks pointing to different locations: My Other Page.
Here's a list for your viewing pleasure:
- First Item
- Second Item
- Third Item
In conclusion, here's some strong and emphasized text.