Hello World: MDX + Astro Starter
Why Astro
Static-first, islands architecture, zero default JS — for a content-driven personal site, this combo has the lowest writing friction.
Code block test:
function fib(n: number): number {
if (n < 2) return n;
return fib(n - 1) + fib(n - 2);
}
Inline code works too. bold, italic, links all render naturally.
Next steps
- Wire up Giscus comments
- Add RSS + sitemap
- Write the first real AI note