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

And here's some code:
function greet(name) {
return `Hello, ${name}!`;
}
console.log(greet("World"));
You can also create links like this: My Website.
Let's add a list:
- Item 1
- Item 2
- Item 3
Finally, here's some emphasized and strongly emphasized text.
```mdx
---
title: "My MDX Document"
date: "2023-10-27"
---
# Greetings! This is My MDX Page
This simple MDX file illustrates the merging of Markdown's formatting capabilities with the power of JSX components.
Take a look at this image, for instance:
<InsImage src="/images/example.png" alt="Example Image"></InsImage>
And here's a code snippet provided for you:
```javascript
function greet(name) {
return `Hello, ${name}!`;
}
console.log(greet("World"));
You're able to generate hyperlinks in this manner: My Website.
How about we include a list now?
- Item 1
- Item 2
- Item 3
To conclude, here is some text that is italicized and text that is bold.
<AppearanceSection></AppearanceSection>