Welcome to my MDX page!
Let's explore some of the capabilities of MDX. We can include standard markdown, like bold text and italic text.
function helloWorld() {
console.log("Hello, world!");
}
We can also embed React components directly into our markdown. For example, an image:

Here's a link to Google.
Finally, let's add a list:
- Item 1
- Item 2
- Item 3
That's all for now!
```mdx
---
title: "An MDX Demonstration"
description: "Here's an MDX example showcasing different functionalities."
---
# Greetings! This is my MDX-powered page.
Let's delve into what MDX can do. We have the capacity to incorporate regular markdown elements, such as **strongly emphasized text** and *text with emphasis*.
```javascript
function helloWorld() {
console.log("Hello, world!");
}
Furthermore, we are able to directly insert React components within our markdown documents. As an illustration, consider this image:

You can find Google here.
To conclude, let's incorporate a list:
- A first list entry
- A second list entry
- A third list entry
That concludes this demonstration!