Blog

Hello World

Kicking off my personal tech blog with MDX + Next.js static export.

metawriting

Why this site exists

I want one place for:

  • LeetCode writeups (approach + complexity + code)
  • Project notes and portfolio
  • Short posts about what I learn

Code sample

export function greet(name: string): string {
  return `Hello, ${name}!`
}