Przeglądaj źródła

Add public marketing, terms, and privacy HTML pages.

Create app-specific website pages with linked support/legal routes, white backgrounds, and sanitized public metadata.

Made-with: Cursor
Hussain Afzal 3 miesięcy temu
rodzic
commit
78013ea4d2
3 zmienionych plików z 390 dodań i 0 usunięć
  1. 169 0
      MARKETING_HOME.html
  2. 111 0
      PRIVACY_POLICY.html
  3. 110 0
      TERMS_OF_SERVICE.html

+ 169 - 0
MARKETING_HOME.html

@@ -0,0 +1,169 @@
+<!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="Google Apps for macOS — launch Google services faster with app shortcuts, widgets, desktop links, and premium power features.">
+    <title>Google Apps - Faster Google Access on Mac</title>
+    <style>
+        * { margin: 0; padding: 0; box-sizing: border-box; }
+        body {
+            font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
+            line-height: 1.6;
+            color: #1a1a1a;
+            background: #ffffff;
+            padding: 2rem 1.5rem 3rem;
+        }
+        .page { max-width: 720px; margin: 0 auto; }
+        a { color: #0f766e; text-decoration: none; }
+        a:hover { text-decoration: underline; }
+
+        .hero { margin-bottom: 2.75rem; }
+        .hero h1 {
+            font-size: clamp(1.75rem, 4vw, 2.125rem);
+            font-weight: 700;
+            color: #0f172a;
+            letter-spacing: -0.02em;
+            line-height: 1.25;
+            margin-bottom: 0.75rem;
+        }
+        .hero .lead {
+            font-size: 1.0625rem;
+            color: #475569;
+            margin-bottom: 1.5rem;
+        }
+        .cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem 1rem; }
+        .btn {
+            display: inline-flex;
+            align-items: center;
+            justify-content: center;
+            padding: 0.625rem 1.125rem;
+            font-size: 0.9375rem;
+            font-weight: 600;
+            color: #fff;
+            background: #0f172a;
+            border-radius: 8px;
+            border: none;
+            text-decoration: none;
+            transition: background 0.15s ease;
+        }
+        .btn:hover { background: #1e293b; text-decoration: none; }
+        .btn-secondary {
+            background: #fff;
+            color: #0f172a;
+            border: 1px solid #e2e8f0;
+        }
+        .btn-secondary:hover { background: #f8fafc; }
+
+        .section-title {
+            font-size: 0.75rem;
+            font-weight: 600;
+            letter-spacing: 0.06em;
+            text-transform: uppercase;
+            color: #94a3b8;
+            margin-bottom: 1rem;
+        }
+        .features { margin-bottom: 2.5rem; }
+        .feature-grid {
+            display: grid;
+            grid-template-columns: 1fr;
+            gap: 1rem;
+        }
+        @media (min-width: 520px) {
+            .feature-grid { grid-template-columns: 1fr 1fr; }
+        }
+        .feature {
+            background: #fff;
+            border: 1px solid #e2e8f0;
+            border-radius: 10px;
+            padding: 1.125rem 1.25rem;
+        }
+        .feature h3 {
+            font-size: 0.9375rem;
+            font-weight: 600;
+            color: #0f172a;
+            margin-bottom: 0.35rem;
+        }
+        .feature p {
+            font-size: 0.875rem;
+            color: #64748b;
+            line-height: 1.55;
+        }
+
+        .trust {
+            background: #f1f5f9;
+            border-radius: 10px;
+            padding: 1.25rem 1.35rem;
+            margin-bottom: 2.5rem;
+        }
+        .trust p {
+            font-size: 0.9375rem;
+            color: #475569;
+        }
+        .trust strong { color: #334155; }
+
+        .footer {
+            padding-top: 1.5rem;
+            border-top: 1px solid #e2e8f0;
+            font-size: 0.8125rem;
+            color: #94a3b8;
+        }
+        .footer-links {
+            display: flex;
+            flex-wrap: wrap;
+            gap: 0.75rem 1.25rem;
+            margin-bottom: 0.75rem;
+        }
+        .footer-links a { color: #64748b; }
+        .footer-links a:hover { color: #0f766e; }
+    </style>
+</head>
+<body>
+    <div class="page">
+        <section class="hero">
+            <h1>All your Google apps in one Mac launcher</h1>
+            <p class="lead">Google Apps helps you open Gmail, Drive, Calendar, Docs, Maps, YouTube, Gemini, and more from one fast desktop app. Search, pin, reorder, and launch your favorite tools without keeping a browser tab jungle open.</p>
+            <div class="cta-row">
+                <a class="btn" href="https://sites.google.com/view/gogleapps/home" target="_blank" rel="noopener">Download on the Mac App Store</a>
+                <a class="btn btn-secondary" href="https://sites.google.com/view/gogleapps/support" target="_blank" rel="noopener">Support</a>
+            </div>
+        </section>
+
+        <p class="section-title">What you can do</p>
+        <section class="features" aria-label="Features">
+            <div class="feature-grid">
+                <div class="feature">
+                    <h3>Quick launch hub</h3>
+                    <p>Open dozens of Google services with one click, plus your own custom web apps.</p>
+                </div>
+                <div class="feature">
+                    <h3>Widgets & shortcuts</h3>
+                    <p>Add app widgets, desktop shortcuts, and status bar shortcuts for faster daily access.</p>
+                </div>
+                <div class="feature">
+                    <h3>Flexible organization</h3>
+                    <p>Search, pin, hide, and reorder apps so the launcher matches your workflow.</p>
+                </div>
+                <div class="feature">
+                    <h3>Premium upgrade</h3>
+                    <p>Unlock desktop widgets, ad blocking, auto startup, and other premium features.</p>
+                </div>
+            </div>
+        </section>
+
+        <section class="trust" aria-label="Privacy">
+            <p><strong>Built for convenience with clear controls.</strong> The app launches web services you choose and stores your launcher preferences locally on your Mac. Premium subscriptions are handled by Apple through your Apple ID.</p>
+        </section>
+
+        <footer class="footer">
+            <div class="footer-links">
+                <a href="https://sites.google.com/view/gogleapps/home" target="_blank" rel="noopener">Home</a>
+                <a href="https://sites.google.com/view/gogleapps/terms-of-service" target="_blank" rel="noopener">Terms of Service</a>
+                <a href="https://sites.google.com/view/gogleapps/privacy-policy" target="_blank" rel="noopener">Privacy Policy</a>
+                <a href="https://sites.google.com/view/gogleapps/support" target="_blank" rel="noopener">Support</a>
+            </div>
+            <p>Google Apps is an independent macOS app and is not affiliated with or endorsed by Google LLC. Google product names are trademarks of Google LLC.</p>
+        </footer>
+    </div>
+</body>
+</html>

+ 111 - 0
PRIVACY_POLICY.html

@@ -0,0 +1,111 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+    <meta charset="UTF-8">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <title>Privacy Policy - Google Apps</title>
+    <style>
+        * { margin: 0; padding: 0; box-sizing: border-box; }
+        body {
+            font-family: system-ui, -apple-system, sans-serif;
+            line-height: 1.6;
+            color: #1a1a1a;
+            background: #ffffff;
+            padding: 2rem 1.5rem;
+        }
+        .page { max-width: 640px; margin: 0 auto; }
+        .masthead { margin-bottom: 1.5rem; }
+        .masthead h1 { font-size: 1.5rem; font-weight: 700; color: #0f172a; }
+        .masthead .meta { margin-top: 0.25rem; font-size: 0.8125rem; color: #64748b; }
+        .intro {
+            font-size: 0.9375rem;
+            color: #475569;
+            margin-bottom: 1.5rem;
+            padding-bottom: 1rem;
+            border-bottom: 1px solid #e2e8f0;
+        }
+        .block { margin-bottom: 1.5rem; }
+        .block h2 { font-size: 1rem; font-weight: 600; color: #0f172a; margin-bottom: 0.5rem; }
+        .block p { font-size: 0.9375rem; color: #334155; margin-bottom: 0.5rem; }
+        .block a { color: #0f766e; text-decoration: none; }
+        .block a:hover { text-decoration: underline; }
+        .foot { margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid #e2e8f0; font-size: 0.8125rem; color: #94a3b8; }
+        .links {
+            display: flex;
+            flex-wrap: wrap;
+            gap: 0.75rem 1.25rem;
+            margin-top: 0.75rem;
+        }
+    </style>
+</head>
+<body>
+    <div class="page">
+        <div class="masthead">
+            <h1>Google Apps - Privacy Policy</h1>
+            <p class="meta">Last updated: April 7, 2026</p>
+        </div>
+
+        <p class="intro">Google Apps ("we", "our", or "us") respects your privacy. This Privacy Policy explains what information the app handles and how it is used when you use our macOS application.</p>
+
+        <div class="block">
+            <h2>Information the app uses</h2>
+            <p>The App stores launcher preferences on your device, such as app order, pinned items, hidden items, widgets, and custom shortcuts you create.</p>
+            <p>The App can open third-party websites you select (for example Gmail, Google Drive, Maps, and others). Content you view or submit on those websites is governed by those services, not by this App.</p>
+            <p>If you use paid features, subscription and purchase data is processed by Apple through StoreKit and your Apple ID account.</p>
+        </div>
+
+        <div class="block">
+            <h2>Permissions</h2>
+            <p>The App may request system permissions only when needed by features:</p>
+            <p><strong>Location:</strong> used for map-related features to center maps and suggest nearby places.</p>
+            <p><strong>Calendars:</strong> used to display upcoming events in the Calendar widget and open scheduling links.</p>
+            <p>You can manage permissions at any time in macOS System Settings.</p>
+        </div>
+
+        <div class="block">
+            <h2>Data sharing</h2>
+            <p>We do not sell your personal information. Information may be shared only with service providers required to operate app functionality, such as Apple for payments and entitlement verification, or when required by law.</p>
+        </div>
+
+        <div class="block">
+            <h2>Data retention</h2>
+            <p>Locally stored app settings remain on your device until you remove the App data or uninstall the App. Third-party services (such as websites you open and Apple billing systems) keep data under their own policies.</p>
+        </div>
+
+        <div class="block">
+            <h2>Security</h2>
+            <p>We use reasonable safeguards to protect app functionality and local data handling. However, no method of transmission or storage is 100% secure.</p>
+        </div>
+
+        <div class="block">
+            <h2>Children's privacy</h2>
+            <p>The App is not directed to children under 13, and we do not knowingly collect personal information directly from children.</p>
+        </div>
+
+        <div class="block">
+            <h2>Third-party policies</h2>
+            <p>The App provides access to third-party web services. Please review their privacy policies directly, including Apple and Google policy pages when relevant to your usage.</p>
+            <p>Apple Privacy: <a href="https://www.apple.com/legal/privacy/" target="_blank" rel="noopener">https://www.apple.com/legal/privacy/</a></p>
+        </div>
+
+        <div class="block">
+            <h2>Changes to this policy</h2>
+            <p>We may update this Privacy Policy from time to time. We will update the date at the top of this page when changes are made.</p>
+        </div>
+
+        <div class="block">
+            <h2>Contact</h2>
+            <p>For privacy-related questions, please visit our support page: <a href="https://sites.google.com/view/gogleapps/support" target="_blank" rel="noopener">https://sites.google.com/view/gogleapps/support</a>.</p>
+        </div>
+
+        <div class="foot">
+            <p>Effective April 7, 2026.</p>
+            <div class="links">
+                <a href="https://sites.google.com/view/gogleapps/home" target="_blank" rel="noopener">Home</a>
+                <a href="https://sites.google.com/view/gogleapps/terms-of-service" target="_blank" rel="noopener">Terms of Service</a>
+                <a href="https://sites.google.com/view/gogleapps/support" target="_blank" rel="noopener">Support</a>
+            </div>
+        </div>
+    </div>
+</body>
+</html>

+ 110 - 0
TERMS_OF_SERVICE.html

@@ -0,0 +1,110 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+    <meta charset="UTF-8">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <title>Terms of Service - Google Apps</title>
+    <style>
+        * { margin: 0; padding: 0; box-sizing: border-box; }
+        body {
+            font-family: system-ui, -apple-system, sans-serif;
+            line-height: 1.6;
+            color: #1a1a1a;
+            background: #ffffff;
+            padding: 2rem 1.5rem;
+        }
+        .page { max-width: 640px; margin: 0 auto; }
+        .masthead { margin-bottom: 1.5rem; }
+        .masthead h1 { font-size: 1.5rem; font-weight: 700; color: #0f172a; }
+        .masthead .meta { margin-top: 0.25rem; font-size: 0.8125rem; color: #64748b; }
+        .intro {
+            font-size: 0.9375rem;
+            color: #475569;
+            margin-bottom: 1.5rem;
+            padding-bottom: 1rem;
+            border-bottom: 1px solid #e2e8f0;
+        }
+        .block { margin-bottom: 1.5rem; }
+        .block h2 { font-size: 1rem; font-weight: 600; color: #0f172a; margin-bottom: 0.5rem; }
+        .block p { font-size: 0.9375rem; color: #334155; margin-bottom: 0.5rem; }
+        .block a { color: #0f766e; text-decoration: none; }
+        .block a:hover { text-decoration: underline; }
+        .foot { margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid #e2e8f0; font-size: 0.8125rem; color: #94a3b8; }
+        .links {
+            display: flex;
+            flex-wrap: wrap;
+            gap: 0.75rem 1.25rem;
+            margin-top: 0.75rem;
+        }
+    </style>
+</head>
+<body>
+    <div class="page">
+        <div class="masthead">
+            <h1>Google Apps - Terms of Service</h1>
+            <p class="meta">Last updated: April 7, 2026</p>
+        </div>
+
+        <p class="intro">These Terms of Service ("Terms") apply to your use of the Google Apps macOS application ("App"). By using the App, you agree to these Terms. If you do not agree, do not use the App.</p>
+
+        <div class="block">
+            <h2>License</h2>
+            <p>We grant you a limited, non-exclusive, non-transferable license to use the App on Apple-branded devices you own or control, in line with Apple's App Store Terms and Conditions. You may not copy, reverse-engineer, disassemble, modify, or create derivative works of the App except as allowed by law.</p>
+        </div>
+
+        <div class="block">
+            <h2>App purpose</h2>
+            <p>The App is a launcher and productivity companion for web-based services (including Google services), with optional premium features such as widgets, shortcuts, and enhanced customization tools.</p>
+        </div>
+
+        <div class="block">
+            <h2>Subscriptions and purchases</h2>
+            <p>The App may offer in-app purchases or subscriptions (for example, yearly or lifetime premium options). Payment is charged to your Apple ID. Subscriptions renew automatically unless canceled at least 24 hours before the renewal date. You can manage subscriptions in your Apple account settings. Refunds are handled by Apple.</p>
+        </div>
+
+        <div class="block">
+            <h2>Acceptable use</h2>
+            <p>You agree not to use the App in ways that violate applicable law, infringe rights, disrupt services, or attempt unauthorized access to systems or data. You are responsible for content and destinations you open through shortcuts you create.</p>
+        </div>
+
+        <div class="block">
+            <h2>Third-party services</h2>
+            <p>The App opens and interacts with third-party web services. Availability, content, and policies for those services are controlled by their providers. We are not responsible for third-party content, outages, or changes. Google service names and logos are trademarks of Google LLC.</p>
+        </div>
+
+        <div class="block">
+            <h2>Termination</h2>
+            <p>These Terms apply until ended by you or us. Your rights under these Terms end automatically if you violate them. When terminated, you must stop using the App and delete any copies in your control.</p>
+        </div>
+
+        <div class="block">
+            <h2>Disclaimer of warranties</h2>
+            <p>The App is provided "as is" and "as available" without warranties of any kind, express or implied, including merchantability, fitness for a particular purpose, and non-infringement.</p>
+        </div>
+
+        <div class="block">
+            <h2>Limitation of liability</h2>
+            <p>To the maximum extent permitted by law, we are not liable for indirect, incidental, special, consequential, or punitive damages, including loss of profits, data, or use. Total liability is limited to the greater of fifty U.S. dollars (USD $50) or the amount you paid for the App in the previous 12 months.</p>
+        </div>
+
+        <div class="block">
+            <h2>Changes to terms</h2>
+            <p>We may update these Terms from time to time. The "Last updated" date will change when updates are made. Continued use of the App after updates means you accept the revised Terms.</p>
+        </div>
+
+        <div class="block">
+            <h2>Contact</h2>
+            <p>For questions about these Terms, please visit our support page: <a href="https://sites.google.com/view/gogleapps/support" target="_blank" rel="noopener">https://sites.google.com/view/gogleapps/support</a>.</p>
+        </div>
+
+        <div class="foot">
+            <p>Effective April 7, 2026.</p>
+            <div class="links">
+                <a href="https://sites.google.com/view/gogleapps/home" target="_blank" rel="noopener">Home</a>
+                <a href="https://sites.google.com/view/gogleapps/privacy-policy" target="_blank" rel="noopener">Privacy Policy</a>
+                <a href="https://sites.google.com/view/gogleapps/support" target="_blank" rel="noopener">Support</a>
+            </div>
+        </div>
+    </div>
+</body>
+</html>