import { Reveal } from "../common/Reveal"; export function FeatureGrid() { const items = [ { title: "Discovery", desc: "Continuously map data across apps, logs, DBs, and cloud storage to restore visibility.", emoji: "๐Ÿงญ", }, { title: "Classification", desc: "Detect PII and sensitive categories (health, finance) with AI-driven labeling.", emoji: "๐Ÿ”Ž", }, { title: "Remediation", desc: "Anonymize, minimize, and automate consent workflows to reduce exposure.", emoji: "๐Ÿงน", }, { title: "Monitoring", desc: "Continuous compliance checks with alerts and reports aligned to GDPR.", emoji: "๐Ÿ“ˆ", }, ]; return (

Core capabilities

Proactive privacy protection tailored for Nordic identity ecosystems and EU data law.

{items.map((f, i) => (
{f.emoji}

{f.title}

{f.desc}

{/* Spacer to ensure consistent padding at bottom when descriptions vary */}
))}
); }