"use client"; import { FadeIn } from "./fade-in"; import { CV_DATA } from "@/lib/cv-data"; function SkillPill({ label }: { label: string }) { return ( {label} ); } const SKILL_GROUPS = [ { title: "Programmeertalen", items: CV_DATA.skills.languages }, { title: "Frameworks", items: CV_DATA.skills.frameworks }, { title: "Databases", items: CV_DATA.skills.databases }, { title: "Talen", items: CV_DATA.skills.spoken }, ]; export function SkillsSection() { return (

Technologie

Skills & Tools

{SKILL_GROUPS.map((group, i) => (

{group.title}

{group.items.map((s) => ( ))}
))}

Interesses

{CV_DATA.interests.map((interest) => ( {interest} ))}
); }