My personal site — kavin.me. Next.js (App Router), deployed on Vercel.
app/page.js— home (about, projects, recent writing)app/writing— the blog: index +[slug]article pagescontent/writing/*.mdx— articles (frontmatter:title,description,date,draft)lib/— shared data (projects,socials) and the MDX loaderapp/s/[shortlink]/route.js— Airtable-backed URL shortenerapp/api/*— projects/contacts JSON endpoints
Drop an .mdx file in content/writing/. Newest date sorts first; draft: true hides it in production.
pnpm install
pnpm dev