'use client' import { useTheme } from '@/lib/ThemeContext' import type { B2BHit } from '@/lib/AlertsB2BContext' import { getImportanceLabelColor, getDecisionLabelColor, formatDeadline } from '@/lib/AlertsB2BContext' export function HitCard({ hit, onClick }: { hit: B2BHit onClick: () => void }) { const { isDark } = useTheme() return ( ) }