skip to content
← cd ../blog

If you're reading this, you're a little more curious than I expected

#meta

In all seriousness, I do intend to publish a few tech-related thoughts in this space in the near future. But for now, this is a placeholder so the blog index and RSS feed have something to render.

Astro builds every page of a blog at build time, rendering markdown files into pre-built HTML. Each post is a Markdown (or MDX) file in src/content/blog/.

// code blocks are styled to match the terminal theme of my site
const greet = (name: string) => `hello, ${name}`;
console.log(greet('world'));

Stay tuned!