import { SkillsRadarChart } from "@/components/radar-chart"; interface RadarSectionProps { radarData: Array<{ category: string; score: number; maxScore: number; }>; } export function RadarSection({ radarData }: RadarSectionProps) { return (
Radar chart représentant votre niveau par catégorie