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>
Hello from React!
</div>
);
}
You can also include images:

And links to other resources, like Google.
Let's add a list:
- Item 1
- Item 2
- Item 3
Finally, some bold and italic text.
```mdx
---
title: "My Fantastic MDX File"
date: "2023-10-27"
---
# Greetings! This is My MDX Page
This serves as an MDX document demonstration. With it, you have the capability to compose Markdown while incorporating React components directly.
Check out this basic React component:
```jsx
function MyComponent() {
return (
<div>
React says hello!
</div>
);
}
Pictures can also be included:

Also, you can link to external sources, for example Google.
Now, let's incorporate a list:
- First Item
- Second Item
- Third Item
In conclusion, some strong and emphasized text.