| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Support — Printer App - All Printers</title>
- <style>
- :root {
- --blue: #3878f5;
- --blue-light: #e0e9ff;
- --navy: #1f2e52;
- --green: #22ae6b;
- --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; }
- h1 {
- font-size: 24px;
- font-weight: 600;
- color: var(--navy);
- margin-bottom: 8px;
- }
- .subtitle {
- font-size: 14px;
- color: var(--text-secondary);
- margin-bottom: 28px;
- }
- .card {
- background: var(--card);
- border: 1.5px solid var(--border);
- border-radius: var(--radius);
- padding: 24px;
- margin-bottom: 14px;
- }
- .card h2 {
- font-size: 15px;
- font-weight: 600;
- color: var(--navy);
- margin-bottom: 8px;
- display: flex;
- align-items: center;
- gap: 10px;
- }
- .icon-badge {
- width: 32px;
- height: 32px;
- background: var(--blue-light);
- border-radius: 8px;
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 16px;
- flex-shrink: 0;
- }
- .card p {
- font-size: 14px;
- color: var(--text-secondary);
- margin-bottom: 12px;
- }
- .card a {
- font-size: 14px;
- font-weight: 600;
- color: var(--blue);
- text-decoration: none;
- }
- .card a:hover { text-decoration: underline; }
- .faq h3 {
- font-size: 14px;
- font-weight: 600;
- margin: 16px 0 6px;
- color: var(--text);
- }
- .faq h3:first-child { margin-top: 0; }
- .faq p {
- font-size: 13px;
- color: var(--text-secondary);
- margin-bottom: 0;
- }
- </style>
- </head>
- <body>
- <div class="page">
- <a class="back" href="index.html">← Back to Printer App - All Printers</a>
- <h1>Support</h1>
- <p class="subtitle">We're here to help you get the most out of Printer App - All Printers.</p>
- <div class="card">
- <h2><span class="icon-badge">✉️</span> Email Support</h2>
- <p>Have a question, bug report, or feature request? Reach out and we'll get back to you as soon as possible.</p>
- <a href="https://sites.google.com/view/smartprinterappmacos/get-support" target="_blank" rel="noopener">Get Support →</a>
- </div>
- <div class="card">
- <h2><span class="icon-badge">🔄</span> Restore Purchases</h2>
- <p>If you previously purchased Premium, open Printer App - All Printers, go to Premium, and tap <strong>Restore Purchase</strong>. Make sure you're signed in with the same Apple ID used for the purchase.</p>
- </div>
- <div class="card">
- <h2><span class="icon-badge">💳</span> Manage Subscription</h2>
- <p>Subscriptions are managed through Apple. Visit your Apple ID subscription settings to cancel or change your plan.</p>
- <a href="https://apps.apple.com/account/subscriptions" target="_blank" rel="noopener">Manage in Apple Account →</a>
- </div>
- <div class="card faq">
- <h2><span class="icon-badge">❓</span> Frequently Asked Questions</h2>
- <h3>My printer isn't showing up</h3>
- <p>Make sure your printer is connected and added in System Settings → Printers & Scanners. Printer App - All Printers uses macOS's built-in print system.</p>
- <h3>Contacts won't load</h3>
- <p>Grant Printer App - All Printers access to Contacts in System Settings → Privacy & Security → Contacts.</p>
- <h3>Scanner not detected</h3>
- <p>Connect your scanner via USB or network, then check Image Capture or System Settings to confirm macOS recognizes it.</p>
- <h3>OCR isn't recognizing text</h3>
- <p>Use a clear, well-lit image with readable text. OCR works best on printed documents rather than handwriting.</p>
- </div>
- </div>
- </body>
- </html>
|