|
| 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>Grumble – Support</title> |
| 7 | + <style> |
| 8 | + * { box-sizing: border-box; margin: 0; padding: 0; } |
| 9 | + body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; background: #f5f5f7; color: #1d1d1f; } |
| 10 | + .header { background: linear-gradient(135deg, #6B3FA0 0%, #9B59B6cc 100%); color: #fff; text-align: center; padding: 48px 20px 40px; } |
| 11 | + .header h1 { font-size: 2rem; font-weight: 700; margin-bottom: 8px; } |
| 12 | + .header p { font-size: 1rem; opacity: 0.85; } |
| 13 | + .container { max-width: 640px; margin: 0 auto; padding: 32px 20px 60px; } |
| 14 | + .card { background: #fff; border-radius: 16px; padding: 28px; margin-bottom: 20px; box-shadow: 0 1px 8px rgba(0,0,0,0.08); } |
| 15 | + .card h2 { font-size: 1.1rem; font-weight: 700; margin-bottom: 14px; color: #6B3FA0; } |
| 16 | + .card p, .card li { color: #444; line-height: 1.75; font-size: 0.95rem; } |
| 17 | + .card ul { padding-left: 20px; } |
| 18 | + .card li { margin-bottom: 6px; } |
| 19 | + .contact-email { display: inline-block; margin-top: 14px; background: #6B3FA0; color: #fff; text-decoration: none; padding: 12px 24px; border-radius: 10px; font-weight: 600; font-size: 0.95rem; } |
| 20 | + .footer { text-align: center; color: #999; font-size: 0.8rem; padding: 20px; } |
| 21 | + </style> |
| 22 | +</head> |
| 23 | +<body> |
| 24 | + <div class="header"> |
| 25 | + <h1>😤 Grumble Support</h1> |
| 26 | + <p>Your anonymous rant & vent app — we're here to help</p> |
| 27 | + </div> |
| 28 | + <div class="container"> |
| 29 | + <div class="card"> |
| 30 | + <h2>Frequently Asked Questions</h2> |
| 31 | + <ul> |
| 32 | + <li><strong>Is my grumble really anonymous?</strong> Yes. No account or personal information is required.</li> |
| 33 | + <li><strong>How do I delete a grumble?</strong> Long-press any grumble in your list and select Delete.</li> |
| 34 | + <li><strong>How many grumbles can I post?</strong> There is no limit for personal grumbles saved on your device.</li> |
| 35 | + <li><strong>How do I remove ads?</strong> Upgrade to Premium in the Settings screen.</li> |
| 36 | + </ul> |
| 37 | + </div> |
| 38 | + <div class="card"> |
| 39 | + <h2>Contact Us</h2> |
| 40 | + <p>Having trouble? We'd love to help.</p> |
| 41 | + <a class="contact-email" href="mailto:support@appdevelopsk.com">support@appdevelopsk.com</a> |
| 42 | + </div> |
| 43 | + <div class="card"> |
| 44 | + <h2>Privacy Policy</h2> |
| 45 | + <p>Grumble does not collect personal information. All grumbles are stored locally on your device. <a href="https://appdevelopsk.github.io/privacy/">View full Privacy Policy</a></p> |
| 46 | + </div> |
| 47 | + </div> |
| 48 | + <div class="footer"><p>© 2026 AppDevelopSK. All rights reserved.</p></div> |
| 49 | +</body> |
| 50 | +</html> |
0 commit comments