Welcome to My Blog

Welcome!

This is my first blog post using MDX. MDX allows me to write markdown with embedded React components, which is pretty cool!

What is MDX?

MDX is a format that lets you seamlessly write JSX in your Markdown documents. This means you can:

  • Write in markdown syntax
  • Use React components
  • Include interactive elements

Adding Images

You can add images in two ways:

Regular Markdown Syntax

A sample image

Using Next.js Image Component

Sample image with optimization

Code Blocks

Here's some example code:

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

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

Lists

Here's an unordered list:

  • Design
  • Technology
  • Outdoors
  • Photography

And an ordered list:

  1. First item
  2. Second item
  3. Third item

Links

Check out my main site or read more posts.


That's it for this introduction! More posts coming soon.