Hello World

# Hello World This is the first post on my new blog, rebuilt with a terminal aesthetic using [Gridland](https://gridland.io) and Next.js. ## Why a TUI blog? I spend most of my day in the terminal. There's something satisfying about the constraints of a character grid — it forces clarity and simplicity. When I found Gridland, a React framework that renders terminal UIs in the browser, I knew I had to try it for my personal site. ## What's here - **Blog** — posts about software engineering, productivity, and things I'm learning - **Projects** — things I'm building - **About** — a bit about me ## Code example Here's a quick TypeScript snippet to test syntax highlighting: ```typescript function greet(name: string): string { return `Hello, ${name}! Welcome to kiel.codes.` } console.log(greet("world")) ``` More posts coming soon. Thanks for stopping by.