privacy.html 3.9 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>Privacy Policy — 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>Privacy Policy</h1>
  81. <p class="updated">Last updated: June 12, 2026</p>
  82. <p>Smart Printer ("we", "our", or "us") respects your privacy. This policy explains how we handle information when you use the Smart Printer macOS application.</p>
  83. <h2>Information We Collect</h2>
  84. <p>Smart Printer processes data locally on your Mac. We do not collect, store, or transmit your personal documents, photos, contacts, or print content to our servers.</p>
  85. <ul>
  86. <li><strong>Contacts access</strong> — Used only when you choose to print contacts. Contact data stays on your device.</li>
  87. <li><strong>Camera access</strong> — Used only when you scan documents. Images are processed locally.</li>
  88. <li><strong>Files you select</strong> — Opened and printed on your device. We do not upload your files.</li>
  89. </ul>
  90. <h2>Purchases</h2>
  91. <p>Subscriptions and in-app purchases are processed by Apple through the App Store. We receive only anonymized purchase status information needed to unlock premium features. Apple's privacy policy governs payment data.</p>
  92. <h2>Analytics</h2>
  93. <p>We do not use third-party analytics or advertising trackers in Smart Printer.</p>
  94. <h2>Data Retention</h2>
  95. <p>Any recently opened files you choose to save are stored locally on your Mac using system file bookmarks. You can disable recent file saving in app settings.</p>
  96. <h2>Children's Privacy</h2>
  97. <p>Smart Printer is not directed at children under 13. We do not knowingly collect personal information from children.</p>
  98. <h2>Changes to This Policy</h2>
  99. <p>We may update this policy from time to time. Continued use of the app after changes constitutes acceptance of the updated policy.</p>
  100. <h2>Contact Us</h2>
  101. <p>If you have questions about this privacy policy, 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>