| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Printer App - All Printers — Print, Scan & More on Mac</title>
- <style>
- :root {
- --blue: #3878f5;
- --blue-light: #e0e9ff;
- --navy: #1f2e52;
- --green: #22ae6b;
- --green-light: #e0f7e9;
- --purple: #8c5cf5;
- --purple-light: #f2edff;
- --orange: #f5852e;
- --orange-light: #fff0e0;
- --teal: #2eb8d1;
- --teal-light: #e0f7fb;
- --bg: #f6f6f6;
- --card: #ffffff;
- --text: #1f1f1f;
- --text-secondary: #7a7a7a;
- --border: #ebebeb;
- --radius: 16px;
- --radius-sm: 12px;
- }
- * { 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.5;
- -webkit-font-smoothing: antialiased;
- }
- .page {
- max-width: 720px;
- margin: 0 auto;
- padding: 32px 20px 48px;
- }
- /* Hero */
- .hero {
- text-align: center;
- margin-bottom: 36px;
- }
- .logo {
- width: 72px;
- height: 72px;
- border-radius: 18px;
- background: linear-gradient(145deg, var(--blue-light), #fff);
- border: 1.5px solid var(--border);
- display: flex;
- align-items: center;
- justify-content: center;
- margin: 0 auto 16px;
- font-size: 36px;
- }
- .hero h1 {
- font-size: 28px;
- font-weight: 600;
- color: var(--navy);
- letter-spacing: -0.02em;
- margin-bottom: 8px;
- }
- .hero p {
- font-size: 15px;
- color: var(--text-secondary);
- max-width: 480px;
- margin: 0 auto;
- }
- .badge {
- display: inline-flex;
- align-items: center;
- gap: 6px;
- background: var(--purple-light);
- color: var(--purple);
- font-size: 12px;
- font-weight: 600;
- padding: 5px 12px;
- border-radius: 20px;
- margin-top: 14px;
- }
- /* Section */
- .section-title {
- font-size: 13px;
- font-weight: 600;
- text-transform: uppercase;
- letter-spacing: 0.06em;
- color: var(--text-secondary);
- margin-bottom: 14px;
- }
- /* Quick Start */
- .quick-start {
- display: grid;
- grid-template-columns: repeat(3, 1fr);
- gap: 10px;
- margin-bottom: 32px;
- }
- @media (max-width: 520px) {
- .quick-start { grid-template-columns: 1fr; }
- }
- .quick-card {
- background: var(--card);
- border: 1.5px solid var(--border);
- border-radius: var(--radius);
- padding: 18px 14px;
- text-align: center;
- }
- .quick-icon {
- width: 44px;
- height: 44px;
- border-radius: 12px;
- display: flex;
- align-items: center;
- justify-content: center;
- margin: 0 auto 10px;
- font-size: 20px;
- }
- .quick-icon.photos { background: var(--blue-light); }
- .quick-icon.files { background: var(--green-light); }
- .quick-icon.import { background: var(--orange-light); }
- .quick-card h3 {
- font-size: 14px;
- font-weight: 600;
- margin-bottom: 4px;
- }
- .quick-card p {
- font-size: 12px;
- color: var(--text-secondary);
- }
- /* Feature grid */
- .features {
- display: grid;
- grid-template-columns: repeat(2, 1fr);
- gap: 10px;
- margin-bottom: 32px;
- }
- @media (max-width: 520px) {
- .features { grid-template-columns: 1fr; }
- }
- .feature-card {
- background: var(--card);
- border: 1.5px solid var(--border);
- border-radius: var(--radius-sm);
- padding: 16px;
- display: flex;
- gap: 14px;
- align-items: flex-start;
- }
- .feature-icon {
- width: 40px;
- height: 40px;
- border-radius: 10px;
- flex-shrink: 0;
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 18px;
- }
- .feature-icon.scan { background: var(--blue-light); }
- .feature-icon.ocr { background: var(--teal-light); }
- .feature-icon.text { background: var(--green-light); }
- .feature-icon.contacts { background: var(--purple-light); }
- .feature-icon.draw { background: var(--orange-light); }
- .feature-card h3 {
- font-size: 14px;
- font-weight: 600;
- margin-bottom: 3px;
- }
- .feature-card p {
- font-size: 12px;
- color: var(--text-secondary);
- }
- /* Premium */
- .premium-box {
- background: linear-gradient(160deg, #e0e9ff 0%, #f5f8ff 100%);
- border: 1.5px solid #c8d8f8;
- border-radius: var(--radius);
- padding: 24px;
- margin-bottom: 32px;
- }
- .premium-box h2 {
- font-size: 18px;
- font-weight: 600;
- color: var(--navy);
- margin-bottom: 6px;
- }
- .premium-box > p {
- font-size: 13px;
- color: var(--text-secondary);
- margin-bottom: 16px;
- }
- .premium-list {
- list-style: none;
- display: grid;
- grid-template-columns: 1fr 1fr;
- gap: 8px 16px;
- }
- @media (max-width: 520px) {
- .premium-list { grid-template-columns: 1fr; }
- }
- .premium-list li {
- font-size: 13px;
- display: flex;
- align-items: center;
- gap: 8px;
- }
- .check {
- width: 18px;
- height: 18px;
- background: var(--green);
- color: #fff;
- border-radius: 50%;
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 10px;
- flex-shrink: 0;
- }
- /* CTA */
- .cta {
- text-align: center;
- background: var(--card);
- border: 1.5px solid var(--border);
- border-radius: var(--radius);
- padding: 28px 20px;
- }
- .cta h2 {
- font-size: 17px;
- font-weight: 600;
- color: var(--navy);
- margin-bottom: 6px;
- }
- .cta p {
- font-size: 13px;
- color: var(--text-secondary);
- margin-bottom: 16px;
- }
- .cta-btn {
- display: inline-block;
- background: var(--navy);
- color: #fff;
- font-size: 14px;
- font-weight: 600;
- padding: 12px 28px;
- border-radius: 12px;
- text-decoration: none;
- }
- .footer-links {
- text-align: center;
- margin-top: 28px;
- font-size: 12px;
- color: var(--text-secondary);
- }
- .footer-links a {
- color: var(--blue);
- text-decoration: none;
- margin: 0 8px;
- }
- .footer-links a:hover { text-decoration: underline; }
- </style>
- </head>
- <body>
- <div class="page">
- <header class="hero">
- <div class="logo" aria-hidden="true">🖨️</div>
- <h1>Printer App - All Printers</h1>
- <p>Your all-in-one printing and scanning companion for Mac. Import files, scan documents, extract text, and print — all from one beautiful app.</p>
- <span class="badge">✦ Made for macOS</span>
- </header>
- <p class="section-title">Quick Start</p>
- <div class="quick-start">
- <div class="quick-card">
- <div class="quick-icon photos">📷</div>
- <h3>From Photos</h3>
- <p>Select photos from your gallery and print instantly.</p>
- </div>
- <div class="quick-card">
- <div class="quick-icon files">📁</div>
- <h3>From Files</h3>
- <p>Pick images and documents from your file manager.</p>
- </div>
- <div class="quick-card">
- <div class="quick-icon import">📥</div>
- <h3>Import File</h3>
- <p>Add files from storage and preview before printing.</p>
- </div>
- </div>
- <p class="section-title">What You Can Do</p>
- <div class="features">
- <div class="feature-card">
- <div class="feature-icon scan">📄</div>
- <div>
- <h3>Scan File</h3>
- <p>Scan any document with your connected scanner or camera.</p>
- </div>
- </div>
- <div class="feature-card">
- <div class="feature-icon ocr">🔤</div>
- <div>
- <h3>OCR File</h3>
- <p>Extract text from images and print recognized content.</p>
- </div>
- </div>
- <div class="feature-card">
- <div class="feature-icon text">✏️</div>
- <div>
- <h3>Print Text</h3>
- <p>Type or paste text and send it straight to your printer.</p>
- </div>
- </div>
- <div class="feature-card">
- <div class="feature-icon contacts">👤</div>
- <div>
- <h3>Print Contacts</h3>
- <p>Search your contacts and print them in a clean layout.</p>
- </div>
- </div>
- <div class="feature-card">
- <div class="feature-icon draw">🎨</div>
- <div>
- <h3>Draw & Print</h3>
- <p>Sketch, add text and shapes on a canvas, then print your creation.</p>
- </div>
- </div>
- </div>
- <div class="premium-box">
- <h2>Go Premium</h2>
- <p>Unlock the full Printer App - All Printers experience with a subscription or one-time purchase.</p>
- <ul class="premium-list">
- <li><span class="check">✓</span> Unlimited high-quality scans</li>
- <li><span class="check">✓</span> Advanced OCR technology</li>
- <li><span class="check">✓</span> Draw & print canvas</li>
- <li><span class="check">✓</span> Ad-free experience</li>
- <li><span class="check">✓</span> Priority support</li>
- <li><span class="check">✓</span> Secure storage</li>
- </ul>
- </div>
- <div class="cta">
- <h2>Ready to print smarter?</h2>
- <p>Download Printer App - All Printers from the Mac App Store and start printing in seconds.</p>
- <a class="cta-btn" href="https://apps.apple.com/app/id6785834649" target="_blank" rel="noopener">Get Printer App - All Printers</a>
- </div>
- <nav class="footer-links" aria-label="Legal and support">
- <a href="https://sites.google.com/view/smartprinterappmacos/privacy-policy" target="_blank" rel="noopener">Privacy Policy</a>
- <a href="https://sites.google.com/view/smartprinterappmacos/terms-and-condition" target="_blank" rel="noopener">Terms of Use</a>
- <a href="https://sites.google.com/view/smartprinterappmacos/get-support" target="_blank" rel="noopener">Support</a>
- </nav>
- </div>
- </body>
- </html>
|