Sep 2, 2026 • 1 min read
This is a starter post, wired up purely to prove the blog pipeline works end to end — markdown, frontmatter, tags, reading time, and syntax-highlighted code. Edit or delete this file once you've written a real first post.
Fenced code blocks get real syntax highlighting, themed to match the rest of the site:
type Player = {
name: string;
level: number;
};
function greet(player: Player): string {
return `Hello, ${player.name}! You're level ${player.level}.`;
}npm install
npm run devThe important part of a snippet can be called out with a highlight:
function cachedFetch(key: string) {
const cached = redis.get(key);
if (cached) return cached;
const fresh = fetchFromApi(key);
redis.set(key, fresh);
return fresh;
}You can also drop inline code right into a sentence, or link out to Next.js.
This entire post is a placeholder — replace it with something real whenever you're ready.