tair.dev
← Blog

Hello, world

· #meta#sveltekit

This is the first post on tair.dev. The site is a small portfolio plus a place to write things down — engineering notes, tools I’m building, and the occasional longer piece.

How it’s built

The whole thing is a SvelteKit app, styled with Tailwind, with posts authored in Markdown via mdsvex. It prerenders to static HTML and deploys to Cloudflare Pages.

Code blocks render with syntax highlighting:

type Post = {
	title: string;
	date: string;
};

const post: Post = {
	title: 'Hello, world',
	date: '2026-06-24'
};

Inline code works too, as do lists:

  • Fast, static output
  • Markdown authoring
  • No client-side JS required to read a post

Writing is thinking. The point of the blog is to do more of it.

That’s it for now.