| <!DOCTYPE html> |
| <html lang="en"> |
|
|
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>Customer Support - Fraudoo</title> |
| <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&display=swap" rel="stylesheet"> |
| <style> |
| :root { |
| --primary: #4f46e5; |
| --secondary: #ec4899; |
| --bg: #f8fafc; |
| --text: #1e293b; |
| } |
| |
| body { |
| font-family: 'Inter', sans-serif; |
| background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%); |
| color: var(--text); |
| margin: 0; |
| display: flex; |
| justify-content: center; |
| align-items: center; |
| min-height: 100vh; |
| } |
| |
| .container { |
| background: rgba(255, 255, 255, 0.8); |
| backdrop-filter: blur(10px); |
| padding: 3rem; |
| border-radius: 20px; |
| box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05); |
| max-width: 600px; |
| width: 90%; |
| border: 1px solid rgba(255, 255, 255, 0.3); |
| } |
| |
| h1 { |
| background: linear-gradient(to right, var(--primary), var(--secondary)); |
| -webkit-background-clip: text; |
| background-clip: text; |
| -webkit-text-fill-color: transparent; |
| margin-bottom: 2rem; |
| text-align: center; |
| } |
| |
| .support-item { |
| margin-bottom: 1.5rem; |
| border-bottom: 1px solid #e2e8f0; |
| padding-bottom: 1rem; |
| } |
| |
| .support-item:last-child { |
| border-bottom: none; |
| } |
| |
| .support-item strong { |
| display: block; |
| margin-bottom: 0.5rem; |
| color: var(--primary); |
| } |
| |
| .back-btn { |
| display: inline-block; |
| margin-top: 2rem; |
| padding: 0.75rem 1.5rem; |
| background: var(--primary); |
| color: white; |
| text-decoration: none; |
| border-radius: 10px; |
| font-weight: 600; |
| transition: transform 0.2s; |
| } |
| |
| .back-btn:hover { |
| transform: translateY(-2px); |
| } |
| </style> |
| </head> |
|
|
| <body> |
| <div class="container"> |
| <h1>π’ Customer Support</h1> |
| <p>Need help with Fraudoo? Our team is here to ensure your document validation experience is seamless.</p> |
|
|
| <div class="support-item"> |
| <strong>π§ Email Support</strong> |
| <p>Reach out to us at <a href="mailto:support@fraudoo.tech">support@fraudoo.tech</a>. We typically respond |
| within 24 hours.</p> |
| </div> |
|
|
| <div class="support-item"> |
| <strong>π Documentation</strong> |
| <p>Check out our README for local setup instructions and API integration tips.</p> |
| </div> |
|
|
| <div class="support-item"> |
| <strong>π Availability</strong> |
| <p>Monday - Friday: 9 AM - 6 PM UTC</p> |
| </div> |
|
|
| <a href="/" class="back-btn">β Back to App</a> |
| </div> |
| </body> |
|
|
| </html> |