Welcome to my blog! This is the first post, built with Astro and MDX.
Why Astro?
Astro ships zero JavaScript by default, making it perfect for content-focused sites. When I need interactivity, I can embed components using MDX.
What’s coming
I plan to write about:
- Web development
- Tools and workflows
- Things I’m learning
Code example
Here’s a simple TypeScript snippet to verify syntax highlighting works:
function greet(name: string): string {
return `Hello, ${name}!`;
}
console.log(greet('World'));
Stay tuned for more!