Home



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

Welcome to My MDX Page

This is an example MDX document. It demonstrates how you can combine Markdown syntax with JSX components.

Here's an image:

And here's a link to Google.

function add(a, b) {
 return a + b;
}


console.log(add(2, 3));

Let's talk about lists:

  • Item 1
  • Item 2
  • Item 3

Finally, here is some emphasized text and some strong text.

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


# Hello and Welcome to My MDX Page


This MDX document serves as an illustration. It shows the capability of merging Markdown formatting with JSX-based components.


Check out this image below:


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


Here's a hyperlink that redirects to [Google](https://www.google.com).


```javascript
function add(a, b) {
 return a + b;
}


console.log(add(2, 3));

Now, let's consider lists:

  • First Item
  • Second Item
  • Third Item

In conclusion, observe some italicized words and some bold words.

<AppearanceSection></AppearanceSection>