Home



title: "My MDX Document" date: "2023-10-27"

Welcome to My MDX Page

This is an example of an MDX document. It allows you to write Markdown and embed React components.

Here's an example of an image:

And here's some code:

function helloWorld() {
 console.log("Hello, world!");
}

You can also use links, like this one to Google.

Finally, here's a list:

  • Item 1
  • Item 2
  • Item 3


```mdx
---
title: "My MDX Document"
date: "2023-10-27"
---


# Greetings! This is My MDX Page


This serves as a demonstration of an MDX file. You have the capability to compose Markdown and incorporate React elements.


Let's see an image example:


<InsImage src="/images/example.png" alt="Example Image">
</InsImage>


And here's a code snippet:


```javascript
function helloWorld() {
 console.log("Hello, world!");
}

You're also able to utilize hyperlinks, such as this one pointing to Google.

To conclude, here's a bulleted list:

  • Item 1
  • Item 2
  • Item 3

<AppearanceSection></AppearanceSection>