Home



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

Welcome to My MDX Page

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

For example, you can include images:

You can also include code snippets:

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

Learn more about MDX here.



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


# Greetings! This is My MDX Page


This serves as an illustration of an MDX document in action. It gives you the power to combine Markdown's simplicity with the dynamic capabilities of React components.


As a demonstration, consider the inclusion of images:


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


Furthermore, you can insert blocks of code:


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

Explore the world of MDX further here.

<AppearanceSection></AppearanceSection>