Welcome!
This is a sample MDX document. It demonstrates how to combine Markdown and JSX.
function greet(name) {
return `Hello, ${name}!`;
}
console.log(greet("World"));
Here's an image:

Let's add a link to Google.
And some emphasized text.
This is some text under the subheading. We can also add bold text.
def add(a, b):
return a + b
print(add(5, 3))
Finally, a list:
- Item 1
- Item 2
- Item 3
```mdx
---
title: "My Awesome Document"
date: 2023-10-27
---
# Greetings!
This MDX document serves as an illustration of merging Markdown with JSX.
```javascript
function greet(name) {
return `Hello, ${name}!`;
}
console.log(greet("World"));
Check out this picture:

Here is a Google link for you to follow.
And some text that is emphasized.