import { Eye, Lock, ShieldCheck } from "lucide-react"; export default function Private() { const privacyFeatures = [ { icon: ShieldCheck, text: "End-to-end encryption" }, { icon: Lock, text: "Self-hosted option available" }, { icon: Eye, text: "Zero knowledge architecture" }, ]; return (

Your knowledge stays
private and secure

We take privacy seriously. Your data is fully encrypted, never shared with third parties. Even on the hosted version, we securely store your data in our own servers.

{privacyFeatures.map((feature, index) => (
{feature.text}
))}
Self-host Supermemory Our architecture Check out the code
); }