~/meow.log v1.0.0
meow.log meow.log home

← back

Hello, World (from a sleeping cat)

  • #meta
  • #astro
  • #pixel-art

Spinning up a cutesy retro dev blog that lives entirely on GitHub Pages.

Welcome to meow.log — a tiny technical blog that runs on GitHub Pages, builds itself with GitHub Actions, and lets me publish new posts straight from the browser.

Every panel, button, and divider you see is a pixel sprite (with a pure-CSS fallback underneath), so the whole thing degrades gracefully.

Why this stack?

  • Astro ships zero JS by default, so pages load fast.
  • Tailwind holds all the pastel tokens in one config.
  • Shiki colors the code blocks to match the palette.
// a wild code block appears
function greet(cat) {
  return `meow, ${cat.name}! zzz...`;
}

console.log(greet({ name: "biscuit" }));

That’s it. Go pet a cat.