Welcome!
This is a basic MDX document. It demonstrates how to include markdown and JSX components.
function add(a, b) {
return a + b;
}
console.log(add(5, 3));
Here's an image:

You can also use links.
Let's add some bold and italic text.
And a list:
- Item 1
- Item 2
- Item 3
```mdx
---
title: "My Awesome Page"
date: 2023-10-27
---
# Greetings!
This simple MDX file illustrates the incorporation of both markdown syntax and JSX-based components.
```javascript
function add(a, b) {
return a + b;
}
console.log(add(5, 3));
Check out this picture:

Feel free to utilize hyperlinks as well.
How about some strong and emphasized text?
Also, consider this enumeration:
- Item 1
- Item 2
- Item 3
<AppearanceSection></AppearanceSection>