May 20, 2026
Hello World
The first note on this site, and why a personal site needs a writing surface.
A personal site without writing is a business card. This note section is the writing surface: short pieces on what I build and why.
The stack is SvelteKit with content as plain Markdown. Frontmatter is validated against a schema, so a typo in a date breaks the build instead of going live.
type Note = {
title: string;
date: string; // YYYY-MM-DD
tags: string[];
draft: boolean;
};That contract keeps every note honest. More to come.