#astro#webdev#mdx

Hello World - My First Blog Post

Testing out my new blog with Astro, UnoCSS, and MDX!

January 15, 2024 1 min read

Welcome to my blog!

This is my first blog post using the amazing combo of:

  • πŸš€ Astro
  • 🎨 UnoCSS
  • πŸ“ MDX

Why this stack rocks

The performance is incredible, and I can now add interactive components right in my markdown!

Code Example

Here’s some JavaScript:

function greet(name) {
  console.log(`Hello, ${name}!`)
  return `Welcome to my blog!`
}

greet('World')