mgbam commited on
Commit
e31353d
·
verified ·
1 Parent(s): 4421d91

Upload index.html

Browse files
Files changed (1) hide show
  1. pages/index.html +42 -0
pages/index.html ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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" />
6
+ <title>Sundew Diabetes Watch</title>
7
+ <style>
8
+ body { font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif; margin:0; padding:0; background:#f7fafc; color:#1a202c; }
9
+ header { padding: 48px 16px; text-align:center; background:linear-gradient(135deg,#e6fffa,#ebf8ff); }
10
+ h1 { margin: 0 0 8px; font-size: 2.2rem; }
11
+ p.lead { margin: 0; font-size: 1.1rem; }
12
+ main { max-width: 860px; margin: 32px auto; padding: 0 16px; }
13
+ .card { background:#fff; border-radius:16px; box-shadow: 0 6px 24px rgba(0,0,0,0.08); padding:24px; margin-bottom:24px; }
14
+ a.button { display:inline-block; padding:12px 18px; border-radius:12px; background:#2563eb; color:#fff; text-decoration:none; font-weight:600; }
15
+ a.button:hover { background:#1e40af; }
16
+ footer { text-align:center; color:#4a5568; padding:32px 16px; }
17
+ </style>
18
+ </head>
19
+ <body>
20
+ <header>
21
+ <h1>🌿 Sundew Diabetes Watch</h1>
22
+ <p class="lead">Energy-aware monitoring to help people living with diabetes — with love for Africa.</p>
23
+ </header>
24
+ <main>
25
+ <div class="card">
26
+ <h2>Open the App</h2>
27
+ <p>Click below to launch the live app (hosted on Hugging Face Spaces).</p>
28
+ <p><a class="button" href="YOUR_SPACE_URL_HERE" target="_blank" rel="noopener">Open App</a></p>
29
+ </div>
30
+ <div class="card">
31
+ <h2>About</h2>
32
+ <p>Sundew selectively activates heavy predictions only when needed, reducing compute and cost while keeping sensitivity high.
33
+ The app supports multiple languages and lightweight models to run on affordable infrastructure.</p>
34
+ <ul>
35
+ <li>Languages: English, French, Swahili, Hausa</li>
36
+ <li>Model backends: Demo (LogReg), XGBoost, PyTorch, ONNX</li>
37
+ </ul>
38
+ </div>
39
+ </main>
40
+ <footer>© 2025 Sundew Diabetes Watch — Prototype. Not medical advice.</footer>
41
+ </body>
42
+ </html>