diff --git a/admin-compliance/app/sdk/page.tsx b/admin-compliance/app/sdk/page.tsx
index 94e19e4..05e635b 100644
--- a/admin-compliance/app/sdk/page.tsx
+++ b/admin-compliance/app/sdk/page.tsx
@@ -141,6 +141,63 @@ export default function SDKDashboard() {
{/* Industry Presets with Document Preview */}
+ {/* Applicable Regulations Card */}
+ {state.complianceScope?.decision && (
+
+
+
+
+
+
Erkannte Regulierungen
+
Basierend auf Ihrem Scope-Profiling (Level {state.complianceScope.decision.level})
+
+
+
+ Details & Anpassen
+
+
+
+ {(state.complianceScope.decision.requiredDocuments || []).length > 0 ? (
+ ['DSGVO', 'AI Act', 'NIS2', 'HinSchG', 'TTDSG'].filter(reg => {
+ const docs = state.complianceScope?.decision?.requiredDocuments || []
+ const triggers = state.complianceScope?.decision?.hardTriggers || []
+ if (reg === 'DSGVO') return true
+ if (reg === 'AI Act') return triggers.some((t: string) => t.toLowerCase().includes('ai') || t.toLowerCase().includes('ki'))
+ if (reg === 'NIS2') return triggers.some((t: string) => t.toLowerCase().includes('nis') || t.toLowerCase().includes('kritisch'))
+ if (reg === 'HinSchG') return triggers.some((t: string) => t.toLowerCase().includes('whistleblower') || t.toLowerCase().includes('hinweis'))
+ return false
+ }).map(reg => (
+
+ {reg}
+
+ ))
+ ) : (
+ DSGVO
+ )}
+
+
+ )}
+ {!state.complianceScope?.decision && (
+
+
+
+
Scope-Profiling noch nicht abgeschlossen
+
+ Fuehren Sie das Scope-Profiling durch um zu erfahren welche Regulierungen fuer Ihr Unternehmen gelten.
+
+
+
+ )}
+
{/* Stats Grid */}