| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>Terms of Service | Pixel Perfect Undress Wizard</title> |
| <link rel="icon" type="image/x-icon" href="/static/favicon.ico"> |
| <script src="https://cdn.tailwindcss.com"></script> |
| <script src="https://unpkg.com/feather-icons"></script> |
| <style> |
| .gradient-bg { |
| background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); |
| } |
| </style> |
| </head> |
| <body class="gradient-bg min-h-screen text-white"> |
| <div class="container mx-auto px-4 py-12"> |
| <header class="text-center mb-8"> |
| <h1 class="text-4xl font-bold mb-4">Terms of Service</h1> |
| <a href="index.html" class="inline-flex items-center text-purple-300 hover:text-white transition"> |
| <i data-feather="arrow-left"></i> |
| <span class="ml-2">Back to Editor</span> |
| </a> |
| </header> |
|
|
| <main class="max-w-3xl mx-auto bg-white/10 backdrop-blur-lg rounded-xl p-8 shadow-2xl"> |
| <div class="prose prose-invert max-w-none"> |
| <h2>1. Acceptance of Terms</h2> |
| <p>By accessing or using the Pixel Perfect Undress Wizard service, you agree to be bound by these Terms of Service.</p> |
|
|
| <h2>2. Service Description</h2> |
| <p>Our AI-powered service allows users to modify clothing in images. All processing happens in real-time and no images are stored on our servers.</p> |
|
|
| <h2>3. User Responsibilities</h2> |
| <ul> |
| <li>You must own or have rights to any images you upload</li> |
| <li>Do not upload illegal, abusive, or harmful content</li> |
| <li>You are responsible for complying with all applicable laws</li> |
| </ul> |
|
|
| <h2>4. Privacy</h2> |
| <p>We do not store your images or personal data. All processing happens locally in your browser.</p> |
|
|
| <h2>5. Limitation of Liability</h2> |
| <p>We are not responsible for any misuse of our service or any consequences resulting from edited images.</p> |
|
|
| <h2>6. Changes to Terms</h2> |
| <p>We may update these terms at any time. Continued use of the service constitutes acceptance of the new terms.</p> |
|
|
| <p class="mt-8 text-sm opacity-80">Last updated: June 2023</p> |
| </div> |
| </main> |
| </div> |
|
|
| <script> |
| feather.replace(); |
| </script> |
| </body> |
| </html> |