import type { IndustryTemplate } from '../_types' export function DetailHeader({ detail, onBack, }: { detail: IndustryTemplate onBack: () => void }) { return (
{detail.icon}

{detail.name}

{detail.description}

{detail.regulations && detail.regulations.length > 0 && (

Relevante Regulierungen

{detail.regulations.map((reg) => ( {reg} ))}
)}

{detail.vvt_templates?.length || 0}

VVT-Vorlagen

{detail.tom_recommendations?.length || 0}

TOM-Empfehlungen

{detail.risk_scenarios?.length || 0}

Risiko-Szenarien

) }