WellNuo/web-pages/support.html
Sergei ec63a2c1e2 Add admin panel, optimized API, OTP auth, migrations
Admin Panel (Next.js):
- Dashboard with stats
- Users list with relationships (watches/watched_by)
- User detail pages
- Deployments list and detail pages
- Devices, Orders, Subscriptions pages
- OTP-based admin authentication

Backend Optimizations:
- Fixed N+1 query problem in admin APIs
- Added pagination support
- Added .range() and count support to Supabase wrapper
- Optimized batch queries with lookup maps

Database:
- Added migrations for schema evolution
- New tables: push_tokens, notification_settings
- Updated access model

iOS Build Scripts:
- build-ios.sh, clear-apple-cache.sh
- EAS configuration updates

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-12-20 11:05:39 -08:00

129 lines
4.0 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Support - WellNuo</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
color: #333;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 40px 20px;
}
.content {
background: white;
border-radius: 20px;
padding: 40px;
box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}
h1 {
color: #667eea;
margin-bottom: 30px;
font-size: 32px;
}
h2 {
color: #333;
margin-top: 30px;
margin-bottom: 15px;
font-size: 20px;
}
p, li {
line-height: 1.7;
margin-bottom: 15px;
color: #555;
}
ul { margin-left: 20px; }
a { color: #667eea; }
.contact-box {
background: #f8f9ff;
border-radius: 15px;
padding: 25px;
margin: 20px 0;
border-left: 4px solid #667eea;
}
.contact-box h3 {
color: #667eea;
margin-bottom: 10px;
}
.faq-item {
background: #f8f9ff;
border-radius: 10px;
padding: 20px;
margin-bottom: 15px;
}
.faq-item h3 {
color: #333;
margin-bottom: 10px;
font-size: 16px;
}
.faq-item p {
margin-bottom: 0;
font-size: 14px;
}
.back-link {
display: inline-block;
margin-top: 30px;
color: #667eea;
text-decoration: none;
font-weight: 500;
}
.back-link:hover { text-decoration: underline; }
</style>
</head>
<body>
<div class="container">
<div class="content">
<h1>Support Center</h1>
<p>Welcome to WellNuo Support. We're here to help you get the most out of your smart home wellness monitoring system.</p>
<div class="contact-box">
<h3>Contact Us</h3>
<p><strong>Email:</strong> <a href="mailto:support@wellnuo.com">support@wellnuo.com</a></p>
<p><strong>Response Time:</strong> We typically respond within 24-48 hours</p>
</div>
<h2>Frequently Asked Questions</h2>
<div class="faq-item">
<h3>How do I connect my device?</h3>
<p>Open the WellNuo app, go to Settings > Add Device, and follow the on-screen instructions. Make sure Bluetooth is enabled on your phone.</p>
</div>
<div class="faq-item">
<h3>Why isn't my device connecting?</h3>
<p>Ensure Bluetooth is enabled, the device is in pairing mode, and you're within range (typically 30 feet). Try restarting both the app and the device.</p>
</div>
<div class="faq-item">
<h3>How do I update the app?</h3>
<p>Visit the App Store and check for updates. We recommend enabling automatic updates to always have the latest features and security improvements.</p>
</div>
<div class="faq-item">
<h3>Is my data secure?</h3>
<p>Yes, we take your privacy seriously. All data is encrypted and stored securely. Bluetooth device data is processed locally on your device. See our <a href="/privacy">Privacy Policy</a> for details.</p>
</div>
<div class="faq-item">
<h3>How do I delete my account?</h3>
<p>You can delete your account and all associated data from Settings > Account > Delete Account. This action is irreversible.</p>
</div>
<h2>Need More Help?</h2>
<p>If you couldn't find the answer to your question, please don't hesitate to contact us at <a href="mailto:support@wellnuo.com">support@wellnuo.com</a>. Our support team is dedicated to helping you.</p>
<a href="/" class="back-link">&larr; Back to Home</a>
</div>
</div>
</body>
</html>