import Badge from '@/components/Badge' const skills = [ { category: 'Languages', items: ['TypeScript', 'JavaScript', 'Go', 'Python', 'SQL', 'Bash'], }, { category: 'Frontend', items: ['React', 'Next.js', 'Tailwind CSS', 'Radix UI', 'Framer Motion'], }, { category: 'Backend', items: ['Node.js', 'PostgreSQL', 'Redis', 'REST', 'GraphQL', 'tRPC'], }, { category: 'Tooling', items: ['Docker', 'Git', 'GitHub Actions', 'Vercel', 'Linux'], }, { category: 'Focus Areas', items: ['Web Performance', 'Developer Experience', 'API Design', 'UI Engineering', 'Accessibility'], }, ] const timeline = [ { year: '2024', title: 'Senior Engineer — Acme Corp', description: 'Leading frontend infrastructure and design systems. Building core platform features used by millions of users.', }, { year: '2022', title: 'Software Engineer — Startup XYZ', description: 'Full-stack product work across a SaaS platform. Owned the billing system, onboarding flow, and internal tooling.', }, { year: '2021', title: 'Open Source — Deploy CLI', description: 'Built and published an open-source CLI tool in Go for automating local dev environment setup.', }, { year: '2020', title: 'Software Engineer — Agency Co.', description: 'Client work spanning e-commerce, marketing sites, and web apps. Introduced TypeScript and component-driven development.', }, { year: '2019', title: 'BSc Computer Science', description: 'Graduated with a focus on distributed systems and human-computer interaction.', }, ] export default function AboutPage() { return (
{/* Intro */}

About

I'm a software engineer with a focus on the web — building products that are fast, accessible, and well-crafted. I care about the details: clean APIs, readable code, and interfaces that feel good to use. Outside of work I contribute to open source, write about things I'm learning, and tinker with side projects.

{/* Skills */}

Skills

{skills.map(({ category, items }) => (
{category}
    {items.map((item) => (
  • ))}
))}
{/* Timeline */}

Timeline

    {timeline.map(({ year, title, description }) => (
  1. {year}

    {title}

    {description}

  2. ))}
) }