import { Reveal } from "../common/Reveal"; export function AgentsOverview() { const agents = [ { title: "Discovery Agent", desc: "Continuously inventories systems to locate personal and sensitive data across sources, fixing visibility gaps.", emoji: "🛰️", }, { title: "Cleaner Agent", desc: "Identifies PII and sensitive attributes, classifies content, and prepares data for remediation and audits.", emoji: "🧽", }, { title: "Remediation Agent", desc: "Suggests anonymization, consent validation, or deletion; generates compliance reports and monitors posture.", emoji: "🛡️", }, ]; return (

Our agents

Modular, AI-driven roles that work together to keep your data compliant.

{agents.map((a, i) => (
{a.emoji}

{a.title}

{a.desc}

))}
); }