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

Terms of Service

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

{/* Content */}

1. Acceptance of Terms

By accessing and using {SITE_CONFIG.title} ("{SITE_CONFIG.domain}"), you accept and agree to be bound by the terms and provision of this agreement. If you do not agree to abide by the above, please do not use this service.

2. Service Description

{SITE_CONFIG.title} provides a collection of developer tools including but not limited to:

  • Object and Table Editors for JSON, CSV, and other data formats
  • URL and Base64 Encoders/Decoders
  • Code Beautifiers and Minifiers
  • Text Analysis and Comparison Tools
  • Other web-based developer utilities

All tools run entirely in your browser - no data is sent to our servers for processing.

3. Privacy-First Approach

🔒 What "Privacy-First" means at {SITE_CONFIG.title}:

  • Client-Side Processing: All tools process your data locally in your browser
  • No Data Upload: Your sensitive data never leaves your device
  • No Storage: We don't store, cache, or log your input data
  • Minimal Analytics: We only collect anonymous usage statistics via Google Analytics
  • No Tracking: No user accounts, no personal data collection

We use Google Analytics to understand how our tools are used (page views, popular tools, etc.) but we never track or store the actual data you process with our tools.

4. Use License

Permission is granted to temporarily use {SITE_CONFIG.title} for personal and commercial purposes. This is the grant of a license, not a transfer of title, and under this license you may not:

  • Use the service for any illegal or unauthorized purpose
  • Attempt to reverse engineer or extract source code
  • Use automated tools to overload our servers
  • Redistribute or resell access to the service

5. Disclaimer

The materials on {SITE_CONFIG.title} are provided on an 'as is' basis. {SITE_CONFIG.title} makes no warranties, expressed or implied, and hereby disclaims and negates all other warranties including without limitation, implied warranties or conditions of merchantability, fitness for a particular purpose, or non-infringement of intellectual property or other violation of rights.

6. Limitations

In no event shall {SITE_CONFIG.title} or its suppliers be liable for any damages (including, without limitation, damages for loss of data or profit, or due to business interruption) arising out of the use or inability to use the materials on {SITE_CONFIG.title}, even if {SITE_CONFIG.title} or an authorized representative has been notified orally or in writing of the possibility of such damage.

7. Future Monetization

Transparency Notice: We display Adsterra advertisements to support the free operation of this service. Ads are clearly marked and do not interfere with tool functionality. Our privacy-first approach remains unchanged - we will never sell or share your usage data with advertisers.

8. Revisions

{SITE_CONFIG.title} may revise these terms of service at any time without notice. By using this service, you are agreeing to be bound by the then current version of these terms of service.

9. Contact Information

If you have any questions about these Terms of Service, please contact us at{' '} dewe.developer@gmail.com {' '}or through our website at {SITE_CONFIG.domain}.

); }; export default TermsOfService;