Home



title: "My Awesome Page" date: 2023-10-27

Welcome to My Page

This is a basic MDX page. It demonstrates how to combine Markdown with JSX components.

Here's an example of an image:

And here's some code:

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


helloWorld();

You can also use links like this: My Website.

Finally, here is a list:

  • Item 1
  • Item 2
  • Item 3


```mdx
---
title: "My Awesome Page"
date: 2023-10-27
---


# Greetings! This is My Page


This MDX page serves as a simple demonstration. It showcases the integration of Markdown and JSX elements.


Check out this image below:


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


Here's a code snippet for you:


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


helloWorld();

You're able to utilize hyperlinks such as this one: My Website.

And to conclude, observe the following list:

  • Item 1
  • Item 2
  • Item 3

<AppearanceSection></AppearanceSection>