"use client" import { motion } from 'framer-motion' import { Shield, Lock, Eye, Server, FileText, CheckCircle, ArrowLeft } from 'lucide-react' import Link from 'next/link' export default function PrivacyPage() { const privacyFeatures = [ { icon: Lock, title: "Client-Side Only", description: "All password generation happens locally in your browser. No data is ever sent to our servers." }, { icon: Eye, title: "No Tracking", description: "We don't use cookies, analytics, or any tracking mechanisms. Your privacy is guaranteed." }, { icon: Server, title: "No Server Storage", description: "We don't store any passwords, user data, or personal information on our servers." }, { icon: Shield, title: "Open Source", description: "All code is publicly available and auditable. You can verify our privacy claims." } ] const dataPractices = [ { title: "What We Don't Collect", items: [ "Passwords or generated content", "Personal information", "IP addresses", "Browser history", "Usage analytics", "Device information" ] }, { title: "What We Don't Store", items: [ "User accounts", "Password history", "Settings or preferences", "Session data", "Cookies or local storage", "Any personal data" ] }, { title: "What We Don't Share", items: [ "No third-party services", "No advertising networks", "No analytics providers", "No data brokers", "No government requests", "No commercial use" ] } ] return (
Your privacy is our top priority. PassMaster is designed with privacy-first principles.
Every aspect of PassMaster is built to protect your privacy.
{feature.description}
Transparency about how we handle (or don't handle) your data.
We're committed to transparency. If you have any questions about our privacy practices, please review our source code or contact us.