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

Using Next.js Image Component

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:
- First item
- Second item
- Third item
Links
Check out my main site or read more posts.
That's it for this introduction! More posts coming soon.