| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Terms of Use — Printer App - All Printers</title>
- <style>
- :root {
- --blue: #3878f5;
- --navy: #1f2e52;
- --bg: #f6f6f6;
- --card: #ffffff;
- --text: #1f1f1f;
- --text-secondary: #7a7a7a;
- --border: #ebebeb;
- --radius: 16px;
- }
- * { box-sizing: border-box; margin: 0; padding: 0; }
- body {
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
- background: var(--bg);
- color: var(--text);
- line-height: 1.6;
- -webkit-font-smoothing: antialiased;
- }
- .page {
- max-width: 680px;
- margin: 0 auto;
- padding: 32px 20px 48px;
- }
- .back {
- display: inline-flex;
- align-items: center;
- gap: 6px;
- font-size: 13px;
- color: var(--blue);
- text-decoration: none;
- margin-bottom: 24px;
- }
- .back:hover { text-decoration: underline; }
- .card {
- background: var(--card);
- border: 1.5px solid var(--border);
- border-radius: var(--radius);
- padding: 32px 28px;
- }
- h1 {
- font-size: 24px;
- font-weight: 600;
- color: var(--navy);
- margin-bottom: 6px;
- }
- .updated {
- font-size: 13px;
- color: var(--text-secondary);
- margin-bottom: 28px;
- }
- h2 {
- font-size: 16px;
- font-weight: 600;
- color: var(--navy);
- margin: 24px 0 8px;
- }
- p, li {
- font-size: 14px;
- color: var(--text);
- margin-bottom: 12px;
- }
- ul {
- padding-left: 20px;
- margin-bottom: 12px;
- }
- li { margin-bottom: 6px; }
- </style>
- </head>
- <body>
- <div class="page">
- <a class="back" href="index.html">← Back to Printer App - All Printers</a>
- <article class="card">
- <h1>Terms of Use</h1>
- <p class="updated">Last updated: June 12, 2026</p>
- <p>By downloading or using Printer App - All Printers ("the App"), you agree to these Terms of Use. If you do not agree, do not use the App.</p>
- <h2>License</h2>
- <p>We grant you a limited, non-exclusive, non-transferable license to use Printer App - All Printers on Apple-branded devices you own or control, subject to the App Store Terms of Service.</p>
- <h2>Subscriptions & Purchases</h2>
- <ul>
- <li>Premium features require a subscription or one-time purchase through the Mac App Store.</li>
- <li>Subscriptions renew automatically unless cancelled at least 24 hours before the end of the current period.</li>
- <li>Manage or cancel subscriptions in your Apple ID account settings.</li>
- <li>Refunds are handled by Apple in accordance with App Store policies.</li>
- </ul>
- <h2>Acceptable Use</h2>
- <p>You agree not to misuse the App, including attempting to reverse engineer, redistribute, or use it for unlawful purposes. You are responsible for the content you print or scan.</p>
- <h2>Disclaimer</h2>
- <p>Printer App - All Printers is provided "as is" without warranties of any kind. We do not guarantee uninterrupted operation or compatibility with all printers and scanners.</p>
- <h2>Limitation of Liability</h2>
- <p>To the maximum extent permitted by law, we are not liable for any indirect, incidental, or consequential damages arising from your use of the App.</p>
- <h2>Changes</h2>
- <p>We may update these terms at any time. Material changes will be reflected on this page with an updated date.</p>
- <h2>Contact</h2>
- <p>Questions about these terms? Visit our <a href="https://sites.google.com/view/smartprinterappmacos/get-support" target="_blank" rel="noopener" style="color:#3878f5">support page</a>.</p>
- </article>
- </div>
- </body>
- </html>
|