index.html 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395
  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>Printer App - All Printers — Print, Scan &amp; More on Mac</title>
  7. <style>
  8. :root {
  9. --blue: #3878f5;
  10. --blue-light: #e0e9ff;
  11. --navy: #1f2e52;
  12. --green: #22ae6b;
  13. --green-light: #e0f7e9;
  14. --purple: #8c5cf5;
  15. --purple-light: #f2edff;
  16. --orange: #f5852e;
  17. --orange-light: #fff0e0;
  18. --teal: #2eb8d1;
  19. --teal-light: #e0f7fb;
  20. --bg: #f6f6f6;
  21. --card: #ffffff;
  22. --text: #1f1f1f;
  23. --text-secondary: #7a7a7a;
  24. --border: #ebebeb;
  25. --radius: 16px;
  26. --radius-sm: 12px;
  27. }
  28. * { box-sizing: border-box; margin: 0; padding: 0; }
  29. body {
  30. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  31. background: var(--bg);
  32. color: var(--text);
  33. line-height: 1.5;
  34. -webkit-font-smoothing: antialiased;
  35. }
  36. .page {
  37. max-width: 720px;
  38. margin: 0 auto;
  39. padding: 32px 20px 48px;
  40. }
  41. /* Hero */
  42. .hero {
  43. text-align: center;
  44. margin-bottom: 36px;
  45. }
  46. .logo {
  47. width: 72px;
  48. height: 72px;
  49. border-radius: 18px;
  50. background: linear-gradient(145deg, var(--blue-light), #fff);
  51. border: 1.5px solid var(--border);
  52. display: flex;
  53. align-items: center;
  54. justify-content: center;
  55. margin: 0 auto 16px;
  56. font-size: 36px;
  57. }
  58. .hero h1 {
  59. font-size: 28px;
  60. font-weight: 600;
  61. color: var(--navy);
  62. letter-spacing: -0.02em;
  63. margin-bottom: 8px;
  64. }
  65. .hero p {
  66. font-size: 15px;
  67. color: var(--text-secondary);
  68. max-width: 480px;
  69. margin: 0 auto;
  70. }
  71. .badge {
  72. display: inline-flex;
  73. align-items: center;
  74. gap: 6px;
  75. background: var(--purple-light);
  76. color: var(--purple);
  77. font-size: 12px;
  78. font-weight: 600;
  79. padding: 5px 12px;
  80. border-radius: 20px;
  81. margin-top: 14px;
  82. }
  83. /* Section */
  84. .section-title {
  85. font-size: 13px;
  86. font-weight: 600;
  87. text-transform: uppercase;
  88. letter-spacing: 0.06em;
  89. color: var(--text-secondary);
  90. margin-bottom: 14px;
  91. }
  92. /* Quick Start */
  93. .quick-start {
  94. display: grid;
  95. grid-template-columns: repeat(3, 1fr);
  96. gap: 10px;
  97. margin-bottom: 32px;
  98. }
  99. @media (max-width: 520px) {
  100. .quick-start { grid-template-columns: 1fr; }
  101. }
  102. .quick-card {
  103. background: var(--card);
  104. border: 1.5px solid var(--border);
  105. border-radius: var(--radius);
  106. padding: 18px 14px;
  107. text-align: center;
  108. }
  109. .quick-icon {
  110. width: 44px;
  111. height: 44px;
  112. border-radius: 12px;
  113. display: flex;
  114. align-items: center;
  115. justify-content: center;
  116. margin: 0 auto 10px;
  117. font-size: 20px;
  118. }
  119. .quick-icon.photos { background: var(--blue-light); }
  120. .quick-icon.files { background: var(--green-light); }
  121. .quick-icon.import { background: var(--orange-light); }
  122. .quick-card h3 {
  123. font-size: 14px;
  124. font-weight: 600;
  125. margin-bottom: 4px;
  126. }
  127. .quick-card p {
  128. font-size: 12px;
  129. color: var(--text-secondary);
  130. }
  131. /* Feature grid */
  132. .features {
  133. display: grid;
  134. grid-template-columns: repeat(2, 1fr);
  135. gap: 10px;
  136. margin-bottom: 32px;
  137. }
  138. @media (max-width: 520px) {
  139. .features { grid-template-columns: 1fr; }
  140. }
  141. .feature-card {
  142. background: var(--card);
  143. border: 1.5px solid var(--border);
  144. border-radius: var(--radius-sm);
  145. padding: 16px;
  146. display: flex;
  147. gap: 14px;
  148. align-items: flex-start;
  149. }
  150. .feature-icon {
  151. width: 40px;
  152. height: 40px;
  153. border-radius: 10px;
  154. flex-shrink: 0;
  155. display: flex;
  156. align-items: center;
  157. justify-content: center;
  158. font-size: 18px;
  159. }
  160. .feature-icon.scan { background: var(--blue-light); }
  161. .feature-icon.ocr { background: var(--teal-light); }
  162. .feature-icon.text { background: var(--green-light); }
  163. .feature-icon.contacts { background: var(--purple-light); }
  164. .feature-icon.draw { background: var(--orange-light); }
  165. .feature-card h3 {
  166. font-size: 14px;
  167. font-weight: 600;
  168. margin-bottom: 3px;
  169. }
  170. .feature-card p {
  171. font-size: 12px;
  172. color: var(--text-secondary);
  173. }
  174. /* Premium */
  175. .premium-box {
  176. background: linear-gradient(160deg, #e0e9ff 0%, #f5f8ff 100%);
  177. border: 1.5px solid #c8d8f8;
  178. border-radius: var(--radius);
  179. padding: 24px;
  180. margin-bottom: 32px;
  181. }
  182. .premium-box h2 {
  183. font-size: 18px;
  184. font-weight: 600;
  185. color: var(--navy);
  186. margin-bottom: 6px;
  187. }
  188. .premium-box > p {
  189. font-size: 13px;
  190. color: var(--text-secondary);
  191. margin-bottom: 16px;
  192. }
  193. .premium-list {
  194. list-style: none;
  195. display: grid;
  196. grid-template-columns: 1fr 1fr;
  197. gap: 8px 16px;
  198. }
  199. @media (max-width: 520px) {
  200. .premium-list { grid-template-columns: 1fr; }
  201. }
  202. .premium-list li {
  203. font-size: 13px;
  204. display: flex;
  205. align-items: center;
  206. gap: 8px;
  207. }
  208. .check {
  209. width: 18px;
  210. height: 18px;
  211. background: var(--green);
  212. color: #fff;
  213. border-radius: 50%;
  214. display: flex;
  215. align-items: center;
  216. justify-content: center;
  217. font-size: 10px;
  218. flex-shrink: 0;
  219. }
  220. /* CTA */
  221. .cta {
  222. text-align: center;
  223. background: var(--card);
  224. border: 1.5px solid var(--border);
  225. border-radius: var(--radius);
  226. padding: 28px 20px;
  227. }
  228. .cta h2 {
  229. font-size: 17px;
  230. font-weight: 600;
  231. color: var(--navy);
  232. margin-bottom: 6px;
  233. }
  234. .cta p {
  235. font-size: 13px;
  236. color: var(--text-secondary);
  237. margin-bottom: 16px;
  238. }
  239. .cta-btn {
  240. display: inline-block;
  241. background: var(--navy);
  242. color: #fff;
  243. font-size: 14px;
  244. font-weight: 600;
  245. padding: 12px 28px;
  246. border-radius: 12px;
  247. text-decoration: none;
  248. }
  249. .footer-links {
  250. text-align: center;
  251. margin-top: 28px;
  252. font-size: 12px;
  253. color: var(--text-secondary);
  254. }
  255. .footer-links a {
  256. color: var(--blue);
  257. text-decoration: none;
  258. margin: 0 8px;
  259. }
  260. .footer-links a:hover { text-decoration: underline; }
  261. </style>
  262. </head>
  263. <body>
  264. <div class="page">
  265. <header class="hero">
  266. <div class="logo" aria-hidden="true">🖨️</div>
  267. <h1>Printer App - All Printers</h1>
  268. <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>
  269. <span class="badge">✦ Made for macOS</span>
  270. </header>
  271. <p class="section-title">Quick Start</p>
  272. <div class="quick-start">
  273. <div class="quick-card">
  274. <div class="quick-icon photos">📷</div>
  275. <h3>From Photos</h3>
  276. <p>Select photos from your gallery and print instantly.</p>
  277. </div>
  278. <div class="quick-card">
  279. <div class="quick-icon files">📁</div>
  280. <h3>From Files</h3>
  281. <p>Pick images and documents from your file manager.</p>
  282. </div>
  283. <div class="quick-card">
  284. <div class="quick-icon import">📥</div>
  285. <h3>Import File</h3>
  286. <p>Add files from storage and preview before printing.</p>
  287. </div>
  288. </div>
  289. <p class="section-title">What You Can Do</p>
  290. <div class="features">
  291. <div class="feature-card">
  292. <div class="feature-icon scan">📄</div>
  293. <div>
  294. <h3>Scan File</h3>
  295. <p>Scan any document with your connected scanner or camera.</p>
  296. </div>
  297. </div>
  298. <div class="feature-card">
  299. <div class="feature-icon ocr">🔤</div>
  300. <div>
  301. <h3>OCR File</h3>
  302. <p>Extract text from images and print recognized content.</p>
  303. </div>
  304. </div>
  305. <div class="feature-card">
  306. <div class="feature-icon text">✏️</div>
  307. <div>
  308. <h3>Print Text</h3>
  309. <p>Type or paste text and send it straight to your printer.</p>
  310. </div>
  311. </div>
  312. <div class="feature-card">
  313. <div class="feature-icon contacts">👤</div>
  314. <div>
  315. <h3>Print Contacts</h3>
  316. <p>Search your contacts and print them in a clean layout.</p>
  317. </div>
  318. </div>
  319. <div class="feature-card">
  320. <div class="feature-icon draw">🎨</div>
  321. <div>
  322. <h3>Draw &amp; Print</h3>
  323. <p>Sketch, add text and shapes on a canvas, then print your creation.</p>
  324. </div>
  325. </div>
  326. </div>
  327. <div class="premium-box">
  328. <h2>Go Premium</h2>
  329. <p>Unlock the full Printer App - All Printers experience with a subscription or one-time purchase.</p>
  330. <ul class="premium-list">
  331. <li><span class="check">✓</span> Unlimited high-quality scans</li>
  332. <li><span class="check">✓</span> Advanced OCR technology</li>
  333. <li><span class="check">✓</span> Draw &amp; print canvas</li>
  334. <li><span class="check">✓</span> Ad-free experience</li>
  335. <li><span class="check">✓</span> Priority support</li>
  336. <li><span class="check">✓</span> Secure storage</li>
  337. </ul>
  338. </div>
  339. <div class="cta">
  340. <h2>Ready to print smarter?</h2>
  341. <p>Download Printer App - All Printers from the Mac App Store and start printing in seconds.</p>
  342. <a class="cta-btn" href="https://apps.apple.com/app/id6785834649" target="_blank" rel="noopener">Get Printer App - All Printers</a>
  343. </div>
  344. <nav class="footer-links" aria-label="Legal and support">
  345. <a href="https://sites.google.com/view/smartprinterappmacos/privacy-policy" target="_blank" rel="noopener">Privacy Policy</a>
  346. <a href="https://sites.google.com/view/smartprinterappmacos/terms-and-condition" target="_blank" rel="noopener">Terms of Use</a>
  347. <a href="https://sites.google.com/view/smartprinterappmacos/get-support" target="_blank" rel="noopener">Support</a>
  348. </nav>
  349. </div>
  350. </body>
  351. </html>