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