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 with JSX components.

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

Here's an image:

You can also use links: Example Link

Let's add a list:

  • Item 1
  • Item 2
  • Item 3

And finally, some bold and italic text.


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

 # Greetings! This is My MDX Page
 

 This MDX document serves as an illustration. It showcases the way you're able to merge Markdown formatting with the utilization of JSX components.
 

 ```javascript
 function MyComponent() {
  return (
  <div>
  JSX says hello!
  </div>
  );
 }

Take a look at this image:

You are able to utilize hyperlinks as well: Example Link

Now, let us include a listing:

  • First Item
  • Second Item
  • Third Item

To conclude, some strongly emphasized and slightly emphasized text.

Appearances