import React from 'react'; import { Link } from 'react-router-dom'; import { ArrowLeft, Shield, Lock, Eye, Server, Cookie, BarChart3, Globe } from 'lucide-react'; import { SITE_CONFIG } from '../config/tools'; const PrivacyPolicy = () => { return (
{/* Header */}
Back to Home

Privacy Policy

Last updated: {new Date().toLocaleDateString()}

{/* Content */}
{/* Privacy-First Commitment */}

Our Privacy-First Commitment

At {SITE_CONFIG.title}, "Privacy-First" isn't just a marketing term—it's our core architectural principle. Your data privacy is protected by design, not by policy alone.

100% Client-Side

All processing happens in your browser

Zero Data Upload

Your sensitive data never leaves your device

1. Information We Collect

❌ What We DON'T Collect:

  • Your input data (JSON, CSV, URLs, text, etc.)
  • Files you upload or paste into our tools
  • Personal information (name, email, address)
  • Login credentials or user accounts
  • IP addresses or device fingerprints
  • Browsing history or cross-site tracking

✅ What We DO Collect (via Google Analytics):

  • Anonymous page views and session duration
  • Which tools are most popular (aggregated data only)
  • General geographic region (country/state level)
  • Browser type and device type (for compatibility)
  • Referral sources (how you found our site)

2. Google Analytics Usage

We use Google Analytics to understand how our tools are used and to improve the service. This helps us answer questions like:

  • Which tools are most helpful to developers?
  • Are there performance issues on certain devices?
  • How can we improve the user experience?

Important: Google Analytics only sees that someone visited "dewe.dev/beautifier" - it never sees the actual JSON code you're beautifying or any data you process with our tools.

3. How Our Tools Work

Technical Architecture:

CLIENT

Your browser downloads our JavaScript code

LOCAL

All processing happens locally in your browser's memory

SECURE

No data transmission to our servers for processing

4. Cookies and Local Storage

We use minimal cookies and local storage for:

  • Google Analytics: Anonymous tracking cookies (you can opt-out)
  • Theme Preference: Remembering if you prefer dark/light mode
  • No Personal Data: We never store your processed data locally

5. Advertising (Adsterra)

Advertising:

To keep our tools free, we display Adsterra advertisements.

  • Ads will be clearly marked and non-intrusive
  • No impact on tool functionality or performance
  • The ad network may use cookies for ad delivery
  • We will NEVER share your tool usage data with advertisers

6. Your Rights and Controls

Analytics Opt-Out:

Install browser extensions like uBlock Origin or use Google's opt-out tools to disable analytics tracking.

Data Control:

Since we don't collect your data, there's nothing to delete or export. Your data stays with you.

7. Third-Party Services

Google Analytics

Privacy Policy: https://policies.google.com/privacy

Adsterra

Privacy Policy: https://adsterra.com/privacy-policy/

8. Changes to This Policy

We may update this privacy policy from time to time. We will notify users of any material changes by updating the "Last updated" date at the top of this policy. Your continued use of the service after any changes constitutes acceptance of the new policy.

9. Contact Us

If you have any questions about this Privacy Policy or our privacy practices, please contact us at{' '} dewe.developer@gmail.com {' '}or visit {SITE_CONFIG.domain}.

{/* Footer */}

© {SITE_CONFIG.year} {SITE_CONFIG.title} • Your privacy is our priority

); }; export default PrivacyPolicy;