import { Lock, Server, Users } from "lucide-react"; import { FadeIn } from "./fade-in"; const features = [ { title: "Data Sovereignty", description: "Your images never leave your network. No external API calls, no cloud dependencies. Full GDPR, HIPAA, CCPA compliance by architecture.", icon: Lock, }, { title: "Enterprise Controls", description: "Multi-user authentication, team permissions, API key management, and audit logging. Everything you need for regulated environments.", icon: Users, }, { title: "Deploy Anywhere", description: "Docker, Kubernetes, bare metal. ARM and x86. Air-gapped networks. One container, any infrastructure.", icon: Server, }, ]; export function Enterprise() { return (

Built for organizations that take data seriously.

Healthcare, legal, defense, finance. When images are sensitive, SnapOtter keeps them on your infrastructure.

{features.map((feat, i) => (

{feat.title}

{feat.description}

))}
); }