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>
483 lines
13 KiB
HTML
483 lines
13 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>WellNuo - Smart Home Wellness Monitoring for Seniors</title>
|
|
<meta name="description" content="A patent-pending smart home wellness solution providing families with the information they need to keep their loved ones safe and independent.">
|
|
<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: 1200px;
|
|
margin: 0 auto;
|
|
padding: 0 20px;
|
|
}
|
|
|
|
/* Header */
|
|
header {
|
|
background: rgba(255, 255, 255, 0.95);
|
|
padding: 15px 0;
|
|
position: fixed;
|
|
width: 100%;
|
|
top: 0;
|
|
z-index: 100;
|
|
box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.header-content {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.logo {
|
|
font-size: 28px;
|
|
font-weight: 700;
|
|
color: #667eea;
|
|
}
|
|
|
|
.logo span {
|
|
color: #764ba2;
|
|
}
|
|
|
|
nav a {
|
|
margin-left: 30px;
|
|
text-decoration: none;
|
|
color: #555;
|
|
font-weight: 500;
|
|
transition: color 0.3s;
|
|
}
|
|
|
|
nav a:hover {
|
|
color: #667eea;
|
|
}
|
|
|
|
/* Hero Section */
|
|
.hero {
|
|
padding: 150px 0 100px;
|
|
text-align: center;
|
|
color: white;
|
|
}
|
|
|
|
.hero h1 {
|
|
font-size: 3rem;
|
|
font-weight: 700;
|
|
margin-bottom: 20px;
|
|
text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
|
|
}
|
|
|
|
.hero p {
|
|
font-size: 1.25rem;
|
|
max-width: 700px;
|
|
margin: 0 auto 40px;
|
|
opacity: 0.95;
|
|
line-height: 1.7;
|
|
}
|
|
|
|
.cta-buttons {
|
|
display: flex;
|
|
gap: 20px;
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.btn {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
padding: 16px 32px;
|
|
border-radius: 50px;
|
|
text-decoration: none;
|
|
font-weight: 600;
|
|
font-size: 1rem;
|
|
transition: all 0.3s;
|
|
}
|
|
|
|
.btn-primary {
|
|
background: white;
|
|
color: #667eea;
|
|
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
transform: translateY(-3px);
|
|
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
|
|
}
|
|
|
|
.btn-secondary {
|
|
background: rgba(255, 255, 255, 0.2);
|
|
color: white;
|
|
border: 2px solid white;
|
|
}
|
|
|
|
.btn-secondary:hover {
|
|
background: white;
|
|
color: #667eea;
|
|
}
|
|
|
|
/* Features Section */
|
|
.features {
|
|
background: white;
|
|
padding: 80px 0;
|
|
}
|
|
|
|
.section-title {
|
|
text-align: center;
|
|
margin-bottom: 60px;
|
|
}
|
|
|
|
.section-title h2 {
|
|
font-size: 2.5rem;
|
|
color: #333;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.section-title p {
|
|
color: #666;
|
|
font-size: 1.1rem;
|
|
max-width: 600px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.features-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
|
|
gap: 40px;
|
|
}
|
|
|
|
.feature-card {
|
|
text-align: center;
|
|
padding: 40px 30px;
|
|
border-radius: 20px;
|
|
background: #f8f9ff;
|
|
transition: transform 0.3s, box-shadow 0.3s;
|
|
}
|
|
|
|
.feature-card:hover {
|
|
transform: translateY(-10px);
|
|
box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
|
|
}
|
|
|
|
.feature-icon {
|
|
width: 80px;
|
|
height: 80px;
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin: 0 auto 25px;
|
|
font-size: 36px;
|
|
}
|
|
|
|
.feature-card h3 {
|
|
font-size: 1.4rem;
|
|
margin-bottom: 15px;
|
|
color: #333;
|
|
}
|
|
|
|
.feature-card p {
|
|
color: #666;
|
|
line-height: 1.7;
|
|
}
|
|
|
|
/* How It Works */
|
|
.how-it-works {
|
|
background: linear-gradient(135deg, #f5f7ff 0%, #eef1ff 100%);
|
|
padding: 80px 0;
|
|
}
|
|
|
|
.steps {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
flex-wrap: wrap;
|
|
gap: 30px;
|
|
}
|
|
|
|
.step {
|
|
flex: 1;
|
|
min-width: 250px;
|
|
text-align: center;
|
|
position: relative;
|
|
}
|
|
|
|
.step-number {
|
|
width: 60px;
|
|
height: 60px;
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
color: white;
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 1.5rem;
|
|
font-weight: 700;
|
|
margin: 0 auto 20px;
|
|
}
|
|
|
|
.step h3 {
|
|
font-size: 1.3rem;
|
|
margin-bottom: 10px;
|
|
color: #333;
|
|
}
|
|
|
|
.step p {
|
|
color: #666;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
/* Download Section */
|
|
.download {
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
padding: 80px 0;
|
|
text-align: center;
|
|
color: white;
|
|
}
|
|
|
|
.download h2 {
|
|
font-size: 2.5rem;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.download p {
|
|
font-size: 1.2rem;
|
|
margin-bottom: 40px;
|
|
opacity: 0.9;
|
|
}
|
|
|
|
.store-buttons {
|
|
display: flex;
|
|
gap: 20px;
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.store-btn {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 15px;
|
|
background: white;
|
|
color: #333;
|
|
padding: 15px 30px;
|
|
border-radius: 12px;
|
|
text-decoration: none;
|
|
transition: transform 0.3s, box-shadow 0.3s;
|
|
}
|
|
|
|
.store-btn:hover {
|
|
transform: translateY(-5px);
|
|
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
|
|
}
|
|
|
|
.store-btn svg {
|
|
width: 32px;
|
|
height: 32px;
|
|
}
|
|
|
|
.store-btn .text {
|
|
text-align: left;
|
|
}
|
|
|
|
.store-btn .text small {
|
|
display: block;
|
|
font-size: 0.75rem;
|
|
color: #666;
|
|
}
|
|
|
|
.store-btn .text strong {
|
|
font-size: 1.1rem;
|
|
}
|
|
|
|
/* Footer */
|
|
footer {
|
|
background: #1a1a2e;
|
|
color: white;
|
|
padding: 40px 0;
|
|
text-align: center;
|
|
}
|
|
|
|
footer p {
|
|
opacity: 0.7;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
footer a {
|
|
color: #667eea;
|
|
text-decoration: none;
|
|
}
|
|
|
|
footer a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
/* Responsive */
|
|
@media (max-width: 768px) {
|
|
.hero h1 {
|
|
font-size: 2rem;
|
|
}
|
|
|
|
.hero p {
|
|
font-size: 1rem;
|
|
}
|
|
|
|
nav {
|
|
display: none;
|
|
}
|
|
|
|
.section-title h2 {
|
|
font-size: 1.8rem;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<div class="container header-content">
|
|
<div class="logo">Well<span>Nuo</span></div>
|
|
<nav>
|
|
<a href="#features">Features</a>
|
|
<a href="#how-it-works">How It Works</a>
|
|
<a href="#download">Download</a>
|
|
<a href="https://wellnuo.com" target="_blank">Official Site</a>
|
|
</nav>
|
|
</div>
|
|
</header>
|
|
|
|
<section class="hero">
|
|
<div class="container">
|
|
<h1>Smart Home Wellness Monitoring<br>for Your Loved Ones</h1>
|
|
<p>A patent-pending smart home wellness solution providing families with the information they need to keep their loved ones safe and independent, well into their golden years.</p>
|
|
<div class="cta-buttons">
|
|
<a href="#download" class="btn btn-primary">
|
|
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor"><path d="M17.05 20.28c-.98.95-2.05.8-3.08.35-1.09-.46-2.09-.48-3.24 0-1.44.62-2.2.44-3.06-.35C2.79 15.25 3.51 7.59 9.05 7.31c1.35.07 2.29.74 3.08.8 1.18-.24 2.31-.93 3.57-.84 1.51.12 2.65.72 3.4 1.8-3.12 1.87-2.38 5.98.48 7.13-.57 1.5-1.31 2.99-2.54 4.09l.01-.01zM12.03 7.25c-.15-2.23 1.66-4.07 3.74-4.25.29 2.58-2.34 4.5-3.74 4.25z"/></svg>
|
|
Download for iOS
|
|
</a>
|
|
<a href="#download" class="btn btn-secondary">
|
|
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor"><path d="M3.609 1.814L13.792 12 3.61 22.186c-.16-.113-.61-.529-.61-1.14V2.954c0-.611.45-1.027.609-1.14zm10.89 10.893l2.302 2.302-10.937 6.333 8.635-8.635zm3.199-3.199l2.807 1.626a1.002 1.002 0 010 1.732l-2.807 1.626L15 12l2.698-2.492zM5.864 2.658L16.8 8.99l-2.302 2.302-8.634-8.634z"/></svg>
|
|
Download for Android
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="features" id="features">
|
|
<div class="container">
|
|
<div class="section-title">
|
|
<h2>Why Choose WellNuo?</h2>
|
|
<p>Our ambient sensor technology provides peace of mind without compromising privacy or independence.</p>
|
|
</div>
|
|
<div class="features-grid">
|
|
<div class="feature-card">
|
|
<div class="feature-icon">🔒</div>
|
|
<h3>No Cameras or Microphones</h3>
|
|
<p>Respect your loved ones' privacy while still staying informed about their well-being and daily routines.</p>
|
|
</div>
|
|
<div class="feature-card">
|
|
<div class="feature-icon">⚡</div>
|
|
<h3>Set It and Forget It</h3>
|
|
<p>No wearables, wires, or batteries to worry about. Once installed, the system works automatically.</p>
|
|
</div>
|
|
<div class="feature-card">
|
|
<div class="feature-icon">🔔</div>
|
|
<h3>Instant Alerts</h3>
|
|
<p>Receive urgent notifications when something unusual happens, so you can respond quickly.</p>
|
|
</div>
|
|
<div class="feature-card">
|
|
<div class="feature-icon">📈</div>
|
|
<h3>Detailed Reports</h3>
|
|
<p>Daily, weekly, and monthly reports give you insights to make better care decisions.</p>
|
|
</div>
|
|
<div class="feature-card">
|
|
<div class="feature-icon">🤖</div>
|
|
<h3>AI Assistant Julia</h3>
|
|
<p>Ask questions about your loved one's activity patterns with our intelligent AI companion.</p>
|
|
</div>
|
|
<div class="feature-card">
|
|
<div class="feature-icon">👪</div>
|
|
<h3>Family Sharing</h3>
|
|
<p>Share access with up to 5 family members so everyone can stay in the loop.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="how-it-works" id="how-it-works">
|
|
<div class="container">
|
|
<div class="section-title">
|
|
<h2>How It Works</h2>
|
|
<p>Getting started with WellNuo is simple and straightforward.</p>
|
|
</div>
|
|
<div class="steps">
|
|
<div class="step">
|
|
<div class="step-number">1</div>
|
|
<h3>Download the App</h3>
|
|
<p>Get the WellNuo app from the App Store or Google Play and create your account.</p>
|
|
</div>
|
|
<div class="step">
|
|
<div class="step-number">2</div>
|
|
<h3>Order Sensors</h3>
|
|
<p>Purchase a Starter Kit with motion sensors, door sensor, and hub delivered to your door.</p>
|
|
</div>
|
|
<div class="step">
|
|
<div class="step-number">3</div>
|
|
<h3>Easy Setup</h3>
|
|
<p>Follow the in-app wizard to install sensors - just plug them in and let the app guide you.</p>
|
|
</div>
|
|
<div class="step">
|
|
<div class="step-number">4</div>
|
|
<h3>Stay Connected</h3>
|
|
<p>Check in anytime from your phone, receive alerts, and view activity reports.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="download" id="download">
|
|
<div class="container">
|
|
<h2>Download WellNuo Today</h2>
|
|
<p>Start monitoring your loved ones' well-being with peace of mind.</p>
|
|
<div class="store-buttons">
|
|
<a href="#" class="store-btn">
|
|
<svg viewBox="0 0 24 24" fill="currentColor"><path d="M17.05 20.28c-.98.95-2.05.8-3.08.35-1.09-.46-2.09-.48-3.24 0-1.44.62-2.2.44-3.06-.35C2.79 15.25 3.51 7.59 9.05 7.31c1.35.07 2.29.74 3.08.8 1.18-.24 2.31-.93 3.57-.84 1.51.12 2.65.72 3.4 1.8-3.12 1.87-2.38 5.98.48 7.13-.57 1.5-1.31 2.99-2.54 4.09l.01-.01zM12.03 7.25c-.15-2.23 1.66-4.07 3.74-4.25.29 2.58-2.34 4.5-3.74 4.25z"/></svg>
|
|
<div class="text">
|
|
<small>Download on the</small>
|
|
<strong>App Store</strong>
|
|
</div>
|
|
</a>
|
|
<a href="#" class="store-btn">
|
|
<svg viewBox="0 0 24 24" fill="currentColor"><path d="M3.609 1.814L13.792 12 3.61 22.186c-.16-.113-.61-.529-.61-1.14V2.954c0-.611.45-1.027.609-1.14zm10.89 10.893l2.302 2.302-10.937 6.333 8.635-8.635zm3.199-3.199l2.807 1.626a1.002 1.002 0 010 1.732l-2.807 1.626L15 12l2.698-2.492zM5.864 2.658L16.8 8.99l-2.302 2.302-8.634-8.634z"/></svg>
|
|
<div class="text">
|
|
<small>Get it on</small>
|
|
<strong>Google Play</strong>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<footer>
|
|
<div class="container">
|
|
<p>© 2025 WellNuo - Elderly Care Monitoring. All Rights Reserved.</p>
|
|
<p>
|
|
<a href="https://wellnuo.com" target="_blank">Official Website</a> |
|
|
<a href="mailto:info@wellnuo.com">Contact Us</a>
|
|
</p>
|
|
</div>
|
|
</footer>
|
|
</body>
|
|
</html>
|