← Back to blog

11/24/2025

Hello, world

Why this site exists, what to expect, and how the stack is wired together.

Welcome to the new home for my notes and writing. The stack is:

  • SvelteKit for routing, data loading, and server-rendered pages
  • Tailwind CSS for styling and a typography baseline
  • MDX via mdsvex so prose can sit next to Svelte components
  • Host-agnostic deploys — swap adapters for your platform of choice
<script>
	const today = new Date().toLocaleDateString();
</script>

<div class="rounded-xl bg-white/5 p-4 text-sm text-slate-200">
	<span class="font-semibold text-white">Deployed:</span>
	<span class="ml-2 text-sky-200">last built on {today}</span>
</div>

Next up: iterating on the design system, wiring MDX collections, and adding a notes feed.