'use client' import { AISystem } from './types' interface RiskPyramidProps { systems: AISystem[] } export function RiskPyramid({ systems }: RiskPyramidProps) { const counts = { prohibited: systems.filter(s => s.classification === 'prohibited').length, 'high-risk': systems.filter(s => s.classification === 'high-risk').length, 'limited-risk': systems.filter(s => s.classification === 'limited-risk').length, 'minimal-risk': systems.filter(s => s.classification === 'minimal-risk').length, } return (