Welcome to My MDX Page
This is an example MDX document. It demonstrates how you can combine Markdown with JSX components.
Here's an image:

And here's some code:
function helloWorld() {
console.log("Hello, world!");
}
helloWorld();
You can also include links.
Finally, here's a list:
- Item 1
- Item 2
- Item 3
Enjoy using MDX!
```mdx
---
title: "My MDX Document"
date: "2023-10-27"
---
# Hello and Welcome to my MDX-based Page!
This MDX document serves as a demonstration. You can see how Markdown and JSX components can be interwoven here.
Check out this image below:
<InsImage src="/images/example.png" alt="Example Image"></InsImage>
And now, some code for you:
```javascript
function helloWorld() {
console.log("Hello, world!");
}
helloWorld();
You are also able to add hyperlinks into your document.
To finish, here is a list of items:
- Item 1
- Item 2
- Item 3
I hope you have fun with MDX!
<AppearanceSection></AppearanceSection>