Welcome to My MDX Page
This is a basic MDX document to demonstrate the capabilities of MDX. We can write markdown and embed JSX components seamlessly.
Here's an example of an image:

And here's some code:
function helloWorld() {
console.log("Hello, world!");
}
helloWorld();
Let's add a link to Google.
Finally, let's include a list:
- Item 1
- Item 2
- Item 3
```mdx
---
title: "My MDX Document"
date: "2023-10-27"
---
# Greetings! This is My MDX Page
This straightforward MDX file illustrates what MDX can do. It allows us to compose markdown text along with JSX components without any difficulty.
Check out this image, for instance:
<InsImage src="/images/example.png" alt="Example Image"></InsImage>
And here's a code snippet:
```javascript
function helloWorld() {
console.log("Hello, world!");
}
helloWorld();
Now, here is a link that goes to Google.
Lastly, consider this list:
- Item 1
- Item 2
- Item 3
<AppearanceSection></AppearanceSection>