'use client' import Link from 'next/link' interface EnrichmentHint { field: string label: string impact: string regulation: string priority: string } const PRIORITY_STYLES = { high: { icon: 'â ī¸', border: 'border-amber-300', bg: 'bg-amber-50' }, medium: { icon: 'âšī¸', border: 'border-blue-200', bg: 'bg-blue-50' }, low: { icon: 'đĄ', border: 'border-gray-200', bg: 'bg-gray-50' }, } export function EnrichmentHints({ hints }: { hints: EnrichmentHint[] }) { if (!hints || hints.length === 0) return null const highPriority = hints.filter(h => h.priority === 'high') const otherPriority = hints.filter(h => h.priority !== 'high') return (
Ergaenzen Sie diese Daten im Unternehmensprofil fuer eine vollstaendige regulatorische Bewertung.
{h.impact}