import { motion } from 'framer-motion'; import { Shield, Calendar, User, Globe, Lock } from 'lucide-react'; import { useLanguage } from '@/contexts/LanguageContext'; export default function Privacy() { const { t } = useLanguage(); const sections = [ { title: "Information We Collect", content: [ "Personal Information: When you create an account, we collect your email address, username, and payment information.", "Usage Data: We collect information about how you use our VPN services, including connection timestamps and server locations.", "Device Information: We may collect device identifiers, operating system, and app version information.", "Payment Information: Payment details are processed through secure third-party payment processors and are not stored on our servers." ] }, { title: "How We Use Your Information", content: [ "Service Provision: To provide and maintain our VPN services, including customer support.", "Account Management: To manage your account, process payments, and send service-related communications.", "Service Improvement: To analyze usage patterns and improve our services and user experience.", "Legal Compliance: To comply with legal obligations and protect our legal rights." ] }, { title: "Data Security", content: [ "Encryption: All data transmitted through our VPN services is encrypted using military-grade AES-256 encryption.", "No-Log Policy: We do not log your browsing activity, traffic destinations, or DNS queries while connected to our VPN.", "Secure Infrastructure: Our servers are maintained with the highest security standards and regular security audits.", "Data Retention: We retain minimal connection logs for service optimization and are automatically deleted after 30 days." ] }, { title: "Third-Party Services", content: [ "Payment Processors: We use trusted third-party payment processors to handle payment transactions securely.", "Analytics: We may use analytics services to understand app usage patterns, excluding personal browsing data.", "Service Providers: We may engage trusted third-party service providers to assist in providing our services." ] }, { title: "Your Rights", content: [ "Access: You have the right to access the personal information we hold about you.", "Correction: You can update or correct your personal information through your account settings.", "Deletion: You can request deletion of your account and associated personal information.", "Data Portability: You can request a copy of your personal data in a machine-readable format." ] } ]; return (
{/* Header */}

{t('privacy.title')}

{t('privacy.updated')}

{t('privacy.description')}

{/* Policy Overview */}

{t('privacy.commitment.title')}

{t('privacy.commitment.text')}

{t('privacy.nolog')}
{t('privacy.laws')}
{/* Policy Sections */}
{sections.map((section, index) => (

{section.title}

    {section.content.map((item, itemIndex) => (
  • {item}

  • ))}
))}
{/* Contact Information */}

{t('privacy.contact.title')}

{t('privacy.contact.text')}

{t('privacy.company')}

TAW TRADERS SDN. BHD.

{t('privacy.email')}

privacy@hifastvpn.com

{t('privacy.policy')}

{t('privacy.policy.text')}

{/* Final Note */}

{t('privacy.acknowledgement')}

); }