|
|
@@ -0,0 +1,395 @@
|
|
|
+<!DOCTYPE html>
|
|
|
+<html lang="en">
|
|
|
+<head>
|
|
|
+ <meta charset="UTF-8">
|
|
|
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
+ <title>Smart Printer — 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>Smart Printer</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 Smart Printer 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 Smart Printer from the Mac App Store and start printing in seconds.</p>
|
|
|
+ <a class="cta-btn" href="https://apps.apple.com" target="_blank" rel="noopener">Get Smart Printer</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>
|