terms.html 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Terms of Use — Smart Printer</title>
  7. <style>
  8. :root {
  9. --blue: #3878f5;
  10. --navy: #1f2e52;
  11. --bg: #f6f6f6;
  12. --card: #ffffff;
  13. --text: #1f1f1f;
  14. --text-secondary: #7a7a7a;
  15. --border: #ebebeb;
  16. --radius: 16px;
  17. }
  18. * { box-sizing: border-box; margin: 0; padding: 0; }
  19. body {
  20. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  21. background: var(--bg);
  22. color: var(--text);
  23. line-height: 1.6;
  24. -webkit-font-smoothing: antialiased;
  25. }
  26. .page {
  27. max-width: 680px;
  28. margin: 0 auto;
  29. padding: 32px 20px 48px;
  30. }
  31. .back {
  32. display: inline-flex;
  33. align-items: center;
  34. gap: 6px;
  35. font-size: 13px;
  36. color: var(--blue);
  37. text-decoration: none;
  38. margin-bottom: 24px;
  39. }
  40. .back:hover { text-decoration: underline; }
  41. .card {
  42. background: var(--card);
  43. border: 1.5px solid var(--border);
  44. border-radius: var(--radius);
  45. padding: 32px 28px;
  46. }
  47. h1 {
  48. font-size: 24px;
  49. font-weight: 600;
  50. color: var(--navy);
  51. margin-bottom: 6px;
  52. }
  53. .updated {
  54. font-size: 13px;
  55. color: var(--text-secondary);
  56. margin-bottom: 28px;
  57. }
  58. h2 {
  59. font-size: 16px;
  60. font-weight: 600;
  61. color: var(--navy);
  62. margin: 24px 0 8px;
  63. }
  64. p, li {
  65. font-size: 14px;
  66. color: var(--text);
  67. margin-bottom: 12px;
  68. }
  69. ul {
  70. padding-left: 20px;
  71. margin-bottom: 12px;
  72. }
  73. li { margin-bottom: 6px; }
  74. </style>
  75. </head>
  76. <body>
  77. <div class="page">
  78. <a class="back" href="index.html">← Back to Smart Printer</a>
  79. <article class="card">
  80. <h1>Terms of Use</h1>
  81. <p class="updated">Last updated: June 12, 2026</p>
  82. <p>By downloading or using Smart Printer ("the App"), you agree to these Terms of Use. If you do not agree, do not use the App.</p>
  83. <h2>License</h2>
  84. <p>We grant you a limited, non-exclusive, non-transferable license to use Smart Printer on Apple-branded devices you own or control, subject to the App Store Terms of Service.</p>
  85. <h2>Subscriptions &amp; Purchases</h2>
  86. <ul>
  87. <li>Premium features require a subscription or one-time purchase through the Mac App Store.</li>
  88. <li>Subscriptions renew automatically unless cancelled at least 24 hours before the end of the current period.</li>
  89. <li>Manage or cancel subscriptions in your Apple ID account settings.</li>
  90. <li>Refunds are handled by Apple in accordance with App Store policies.</li>
  91. </ul>
  92. <h2>Acceptable Use</h2>
  93. <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>
  94. <h2>Disclaimer</h2>
  95. <p>Smart Printer is provided "as is" without warranties of any kind. We do not guarantee uninterrupted operation or compatibility with all printers and scanners.</p>
  96. <h2>Limitation of Liability</h2>
  97. <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>
  98. <h2>Changes</h2>
  99. <p>We may update these terms at any time. Material changes will be reflected on this page with an updated date.</p>
  100. <h2>Contact</h2>
  101. <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>
  102. </article>
  103. </div>
  104. </body>
  105. </html>