import type { Metadata } from "next"; import Link from "next/link"; export const metadata: Metadata = { title: "Blog", description: "News and updates from the cmux team", }; const posts = [ { slug: "show-hn-launch", title: "Launching cmux on Show HN", date: "2026-02-21", summary: "cmux hit #2 on Hacker News, got shared by Mitchell Hashimoto, and went viral in Japan.", }, { slug: "introducing-cmux", title: "Introducing cmux", date: "2026-02-12", summary: "A native macOS terminal built on Ghostty, designed for running multiple AI coding agents side by side.", }, ]; export default function BlogPage() { return ( <>

Blog

{posts.map((post) => (

{post.title}

{post.summary}

))}
); }