'use client' import Link from 'next/link' interface Props { /** Risk classification of the AI system. Tile is only rendered for high_risk / unacceptable. */ riskLevel: string } /** * Renders a tile pointing to the BSI QUAIDAL-based data-quality control tab. * AI Act Article 10 obligations (training-data quality) apply only to high-risk * systems, so the tile is skipped for limited / minimal / not-applicable classes. */ export function Art10Tile({ riskLevel }: Props) { if (riskLevel !== 'high_risk' && riskLevel !== 'unacceptable') return null return (