| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta name="description" content="App AI for Reddit — AI-powered tools for Reddit posts, titles, and comments. Built for macOS.">
- <title>App AI for Reddit — AI Tools for Reddit on Mac</title>
- <link rel="icon" type="image/png" href="assets/favicon.png">
- <link rel="apple-touch-icon" href="assets/app-logo.png">
- <link rel="preconnect" href="https://fonts.googleapis.com">
- <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
- <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet">
- <style>
- :root {
- --purple: #5833c7;
- --purple-light: #6b46e5;
- --purple-soft: #f3f0ff;
- --purple-glow: rgba(88, 51, 199, 0.18);
- --bg: #fafafa;
- --surface: #ffffff;
- --text: #111827;
- --text-secondary: #4b5563;
- --text-muted: #9ca3af;
- --border: #e5e7eb;
- --shadow-sm: 0 1px 2px rgba(17, 24, 39, 0.05);
- --shadow-md: 0 8px 32px rgba(88, 51, 199, 0.1);
- --shadow-lg: 0 20px 60px rgba(88, 51, 199, 0.14);
- --radius: 12px;
- --radius-sm: 8px;
- --radius-lg: 20px;
- --max-width: 1120px;
- --font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
- }
- *, *::before, *::after { box-sizing: border-box; }
- html { -webkit-text-size-adjust: 100%; }
- body {
- margin: 0;
- font-family: var(--font);
- font-size: 16px;
- line-height: 1.65;
- color: var(--text);
- background: var(--bg);
- -webkit-font-smoothing: antialiased;
- }
- .container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
- /* Hero */
- .hero {
- position: relative; overflow: hidden;
- padding: 80px 24px 100px;
- background: linear-gradient(180deg, var(--purple-soft) 0%, var(--bg) 70%);
- border-bottom: 1px solid var(--border);
- }
- .hero::before {
- content: "";
- position: absolute; top: -120px; right: -80px;
- width: 480px; height: 480px; border-radius: 50%;
- background: radial-gradient(circle, rgba(88, 51, 199, 0.12) 0%, transparent 70%);
- pointer-events: none;
- }
- .hero__inner {
- max-width: 640px; margin: 0 auto; text-align: center;
- position: relative;
- }
- .hero__badge {
- display: inline-flex; align-items: center; gap: 6px;
- margin-bottom: 20px; padding: 6px 12px; border-radius: 999px;
- background: rgba(88, 51, 199, 0.1); color: var(--purple);
- font-size: 0.8rem; font-weight: 600; letter-spacing: 0.02em;
- }
- .hero__badge span { opacity: 0.7; }
- .hero h1 {
- margin: 0 0 20px; font-size: clamp(2.25rem, 5vw, 3.25rem);
- font-weight: 800; letter-spacing: -0.04em; line-height: 1.1;
- }
- .hero h1 em {
- font-style: normal;
- background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
- -webkit-background-clip: text; -webkit-text-fill-color: transparent;
- background-clip: text;
- }
- .hero__lead {
- margin: 0 auto; font-size: 1.125rem; color: var(--text-secondary);
- line-height: 1.7; max-width: 520px;
- }
- /* Sections */
- .section { padding: 80px 0; }
- .section--alt { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
- .section__header { text-align: center; max-width: 600px; margin: 0 auto 48px; }
- .section__eyebrow {
- display: inline-block; margin-bottom: 12px;
- font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em;
- text-transform: uppercase; color: var(--purple);
- }
- .section__title {
- margin: 0 0 14px; font-size: clamp(1.75rem, 3vw, 2.25rem);
- font-weight: 800; letter-spacing: -0.03em; line-height: 1.2;
- }
- .section__subtitle { margin: 0; color: var(--text-secondary); font-size: 1.05rem; }
- /* Features grid */
- .features-grid {
- display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
- }
- .feature-card {
- padding: 28px; background: var(--surface);
- border: 1px solid var(--border); border-radius: var(--radius);
- box-shadow: var(--shadow-sm); transition: box-shadow 0.2s ease, transform 0.2s ease;
- }
- .feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
- .feature-card__icon {
- width: 44px; height: 44px; border-radius: 11px;
- background: var(--purple-soft); display: grid; place-items: center;
- margin-bottom: 16px; font-size: 1.25rem;
- }
- .feature-card h3 {
- margin: 0 0 8px; font-size: 1.05rem; font-weight: 700; letter-spacing: -0.01em;
- }
- .feature-card p { margin: 0; font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }
- /* Steps */
- .steps {
- display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
- counter-reset: step;
- }
- .step { text-align: center; }
- .step__number {
- width: 48px; height: 48px; border-radius: 50%;
- background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
- color: #fff; font-weight: 800; font-size: 1.1rem;
- display: grid; place-items: center; margin: 0 auto 16px;
- box-shadow: 0 4px 12px var(--purple-glow);
- }
- .step h3 { margin: 0 0 8px; font-size: 1rem; font-weight: 700; }
- .step p { margin: 0; font-size: 0.9rem; color: var(--text-secondary); }
- /* Footer */
- .site-footer { border-top: 1px solid var(--border); background: var(--surface); padding: 32px 24px; text-align: center; }
- .site-footer__copy { margin: 0; font-size: 0.875rem; color: var(--text-muted); }
- /* Responsive */
- @media (max-width: 900px) {
- .features-grid, .steps { grid-template-columns: 1fr; }
- .hero { padding: 48px 24px 64px; }
- .section { padding: 56px 0; }
- }
- @media (max-width: 600px) {
- .hero { padding: 40px 16px 56px; }
- .container { padding: 0 16px; }
- }
- </style>
- </head>
- <body>
- <section class="hero">
- <div class="hero__inner">
- <div class="hero__content">
- <p class="hero__badge">macOS App <span>·</span> AI-Powered</p>
- <h1>Write better Reddit content with <em>App AI for Reddit</em></h1>
- <p class="hero__lead">
- Draft posts, sharpen titles, and craft smarter comments — all from a native Mac app with Reddit built in.
- </p>
- </div>
- </div>
- </section>
- <section class="section">
- <div class="container">
- <div class="section__header">
- <span class="section__eyebrow">Features</span>
- <h2 class="section__title">Everything you need to post with confidence</h2>
- <p class="section__subtitle">Purpose-built AI tools for Reddit creators, right inside a native macOS experience.</p>
- </div>
- <div class="features-grid">
- <article class="feature-card">
- <div class="feature-card__icon">✍️</div>
- <h3>Post Generator</h3>
- <p>Turn a rough idea into a polished Reddit post. Choose your subreddit, tone, and length — AI handles the rest.</p>
- </article>
- <article class="feature-card">
- <div class="feature-card__icon">📐</div>
- <h3>Title Optimizer</h3>
- <p>Get data-driven title suggestions with clear reasoning so your posts stand out in crowded feeds.</p>
- </article>
- <article class="feature-card">
- <div class="feature-card__icon">💬</div>
- <h3>Comment Writer</h3>
- <p>Draft thoughtful replies that match the thread context — agree, disagree, add value, or ask questions.</p>
- </article>
- <article class="feature-card">
- <div class="feature-card__icon">✨</div>
- <h3>Unlimited AI (Premium)</h3>
- <p>Generate as much as you need with no caps. Perfect for active posters and community builders.</p>
- </article>
- <article class="feature-card">
- <div class="feature-card__icon">📋</div>
- <h3>AI History</h3>
- <p>Every response saved locally on your Mac. Revisit, copy, and refine past generations anytime.</p>
- </article>
- <article class="feature-card">
- <div class="feature-card__icon">🌐</div>
- <h3>Reddit Built In</h3>
- <p>Browse and post to Reddit without leaving the app. Sign in, explore subreddits, and publish seamlessly.</p>
- </article>
- </div>
- </div>
- </section>
- <section class="section section--alt">
- <div class="container">
- <div class="section__header">
- <span class="section__eyebrow">How it works</span>
- <h2 class="section__title">From idea to upvote in three steps</h2>
- <p class="section__subtitle">No complicated setup. Install, open, and start creating.</p>
- </div>
- <div class="steps">
- <div class="step">
- <div class="step__number">1</div>
- <h3>Open the app</h3>
- <p>Launch App AI for Reddit on your Mac and sign in to Reddit.</p>
- </div>
- <div class="step">
- <div class="step__number">2</div>
- <h3>Pick your tool</h3>
- <p>Choose Post Generator, Title Optimizer, or Comment Writer from the sidebar.</p>
- </div>
- <div class="step">
- <div class="step__number">3</div>
- <h3>Generate & post</h3>
- <p>Review AI output, edit if needed, and publish directly to Reddit.</p>
- </div>
- </div>
- </div>
- </section>
- <footer class="site-footer">
- <p class="site-footer__copy">© 2026 App AI for Reddit. All rights reserved. Not affiliated with Reddit, Inc.</p>
- </footer>
- </body>
- </html>
|