Home



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

Welcome!

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

function MyComponent() {
 return <h1>Hello from JSX!</h1>;
}

Here's an example of using an image:

You can also include links, like to Google.

And some bold and italic text.

Finally, here's a list:

  • Item 1
  • Item 2
  • Item 3
 ---
 title: "My Awesome Page"
 date: 2023-10-27
 ---
 

 # Greetings!
 

 This simple MDX file shows the combination of Markdown with JSX elements.
 

 ```javascript
 function MyComponent() {
  return <h1>Hello from JSX!</h1>;
 }

See below for an image usage example:

You are able to add links as well, for instance Google.

Also, some bold text and italicized text can be included.

Lastly, a list is shown here:

  • Item 1
  • Item 2
  • Item 3

<AppearanceSection></AppearanceSection>