← AI Learning

Hello World: MDX + Astro Starter

· 1 min read #meta#astro#mdx

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

  1. Wire up Giscus comments
  2. Add RSS + sitemap
  3. Write the first real AI note