import { SkillsRadarChart } from "@/components/radar-chart"; interface RadarSectionProps { radarData: Array<{ category: string; score: number; maxScore: number; }>; } export function RadarSection({ radarData }: RadarSectionProps) { return (

Vue d'ensemble de vos compétences

Radar chart représentant votre niveau par catégorie

); }