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. GDPR, HIPAA, CCPA compliant by architecture.", icon: Lock, gradient: "from-amber-500/10 to-orange-500/5", }, { title: "Enterprise Controls", description: "Multi-user authentication, team permissions, API key management, and audit logging for regulated environments.", icon: Users, gradient: "from-blue-500/10 to-indigo-500/5", }, { title: "Deploy Anywhere", description: "Docker, Kubernetes, bare metal. ARM and x86. Air-gapped networks. One container, any infrastructure.", icon: Server, gradient: "from-emerald-500/10 to-teal-500/5", }, ]; export function Enterprise() { return (

Enterprise ready

Your data never leaves your network.

Deploy on your infrastructure, behind your firewall, on your terms.

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

{feat.title}

{feat.description}

))}
); }