Home



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

Hello, World!

This is a basic MDX document. It demonstrates how to combine Markdown and JSX.

function greet(name) {
 return `Hello, ${name}!`;
}


console.log(greet("World"));

Here's an image:

You can also use links.

Let's add a list:

  • Item 1
  • Item 2
  • Item 3


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


# Greetings, Earth!


This document, built with MDX, shows the fusion of Markdown and JSX capabilities.


```javascript
function greet(name) {
 return `Hello, ${name}!`;
}


console.log(greet("World"));

Check out this picture:

You are able to utilize hyperlinks too.

Now, a list for you:

  • Item 1
  • Item 2
  • Item 3

<AppearanceSection></AppearanceSection>