Spaces:
Running
Running
fix: personalized landing page
Browse files- index.html +40 -34
index.html
CHANGED
|
@@ -1,40 +1,46 @@
|
|
| 1 |
<!doctype html>
|
| 2 |
<html>
|
| 3 |
-
|
| 4 |
<head>
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
</head>
|
| 10 |
-
|
| 11 |
<body>
|
| 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 |
</body>
|
| 39 |
-
|
| 40 |
-
</html>
|
|
|
|
| 1 |
<!doctype html>
|
| 2 |
<html>
|
|
|
|
| 3 |
<head>
|
| 4 |
+
<meta charset="utf-8" />
|
| 5 |
+
<meta name="viewport" content="width=device-width" />
|
| 6 |
+
<title>Mood Engine</title>
|
| 7 |
+
<link rel="stylesheet" href="style.css" />
|
| 8 |
</head>
|
|
|
|
| 9 |
<body>
|
| 10 |
+
<div class="hero">
|
| 11 |
+
<div class="hero-content">
|
| 12 |
+
<div class="app-icon">ππ€</div>
|
| 13 |
+
<h1>Mood Engine</h1>
|
| 14 |
+
<p class="tagline">A full emotion system with personality and memory</p>
|
| 15 |
+
</div>
|
| 16 |
+
</div>
|
| 17 |
+
<div class="container">
|
| 18 |
+
<div class="main-card">
|
| 19 |
+
<div class="app-preview">
|
| 20 |
+
<div class="preview-image">
|
| 21 |
+
<div class="camera-feed">ππ’π‘π²π€π¨</div>
|
| 22 |
+
</div>
|
| 23 |
+
</div>
|
| 24 |
+
<div class="app-details">
|
| 25 |
+
<h2>Features</h2>
|
| 26 |
+
<div class="template-info">
|
| 27 |
+
<div class="info-box"><h3>β‘ Core</h3><p>6 base emotions + compound emotions (awe, nervousness, etc.)</p></div>
|
| 28 |
+
<div class="info-box"><h3>π§ Smart</h3><p>3 personality presets: shy, bold, playful β each changes how emotions express</p></div>
|
| 29 |
+
<div class="info-box"><h3>π§ Technical</h3><p>Micro-expressions, mood decay, emotional memory, and smooth transitions</p></div>
|
| 30 |
+
</div>
|
| 31 |
+
<div class="how-to-use">
|
| 32 |
+
<h3>How to Install</h3>
|
| 33 |
+
<div class="steps">
|
| 34 |
+
<div class="step"><div class="step-number">1</div><div><h4>From Dashboard</h4><p>Open your Reachy Mini dashboard and search for "Mood Engine"</p></div></div>
|
| 35 |
+
<div class="step"><div class="step-number">2</div><div><h4>One-Click Install</h4><p>Click Install β dependencies are handled automatically</p></div></div>
|
| 36 |
+
<div class="step"><div class="step-number">3</div><div><h4>Start Playing</h4><p>Launch the app and watch your robot come alive!</p></div></div>
|
| 37 |
+
</div>
|
| 38 |
+
</div>
|
| 39 |
+
</div>
|
| 40 |
+
</div>
|
| 41 |
+
</div>
|
| 42 |
+
<div class="footer">
|
| 43 |
+
<p>ππ€ Mood Engine Β· by <a href="https://huggingface.co/jrubiosainz">jrubiosainz</a> Β· <a href="https://huggingface.co/reachy-mini#/apps">Browse More Apps</a></p>
|
| 44 |
+
</div>
|
| 45 |
</body>
|
| 46 |
+
</html>
|
|
|