Hello, World!
May 10, 2025
astro mdx blogging

Hello, World!
Welcome to my new blog built with Astro and MDX. This is a sample blog post to demonstrate how content works in this setup.
Why Astro?
Astro is an amazing framework for content-focused websites. It allows you to:
- Build fast, static websites
- Use your favorite UI components (React, Vue, Svelte, etc.)
- Ship less JavaScript to the browser
- Create content with Markdown and MDX
Code Example
import React from 'react';
const Greeting = ({ name }) => {
return (
<div>
<h1>Hello, {name}!</h1>
<p>Welcome to my website.</p>
</div>
);
};
export default Greeting;
What’s Next?
I’ll be sharing more posts about my journey with web development, interesting projects, and other topics I’m passionate about. Stay tuned!