import Badge from '@/components/Badge' const skills = [ { category: 'Programming', items: ['TypeScript', 'JavaScript', 'Go', 'Python', 'SQL'], }, { category: 'Tools', items: ['React', 'Next.js', 'Tailwind CSS', 'Node.js', 'PostgreSQL', 'Docker', 'Git'], }, { category: 'Focus Areas', items: ['Web Performance', 'Developer Experience', 'API Design', 'UI Engineering'], }, ] export default function Skills() { return (

Skills

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