d10g commited on
Commit
c31ce64
·
1 Parent(s): e6a485e

Updated installation notes

Browse files
Files changed (2) hide show
  1. index.html +15 -4
  2. style.css +54 -0
index.html CHANGED
@@ -171,20 +171,31 @@
171
  <h2>Installation</h2>
172
 
173
  <div class="install-methods">
 
 
 
 
 
 
 
 
 
 
 
174
  <div class="install-card">
175
- <h3>Via Reachy Mini App Assistant (Recommended)</h3>
176
  <div class="code-block">
177
  <code>reachy-mini-app-assistant install reachy-f1-commentator</code>
178
  </div>
179
- <p>The easiest way to install on your Reachy Mini. Handles all dependencies automatically.</p>
180
  </div>
181
 
182
  <div class="install-card">
183
- <h3>Manual Installation</h3>
184
  <div class="code-block">
185
  <code>pip install git+https://huggingface.co/spaces/d10g/reachy-f1-commentator</code>
186
  </div>
187
- <p>For advanced users or custom installations.</p>
188
  </div>
189
  </div>
190
 
 
171
  <h2>Installation</h2>
172
 
173
  <div class="install-methods">
174
+ <div class="install-card primary">
175
+ <h3>🎯 Via Reachy Dashboard (Recommended)</h3>
176
+ <ol class="install-steps">
177
+ <li>Open your Reachy Mini dashboard at <code>http://reachy-mini:8000</code></li>
178
+ <li>Navigate to the <strong>Apps</strong> section</li>
179
+ <li>Find <strong>Reachy F1 Commentator</strong> in the app store</li>
180
+ <li>Click <strong>Install</strong> - all dependencies are handled automatically</li>
181
+ </ol>
182
+ <p class="method-note">✨ The easiest way to install - one-click installation with automatic dependency management.</p>
183
+ </div>
184
+
185
  <div class="install-card">
186
+ <h3>Via Reachy Mini App Assistant</h3>
187
  <div class="code-block">
188
  <code>reachy-mini-app-assistant install reachy-f1-commentator</code>
189
  </div>
190
+ <p class="method-note">Command-line installation for users who prefer terminal access.</p>
191
  </div>
192
 
193
  <div class="install-card">
194
+ <h3>Manual Installation (Advanced)</h3>
195
  <div class="code-block">
196
  <code>pip install git+https://huggingface.co/spaces/d10g/reachy-f1-commentator</code>
197
  </div>
198
+ <p class="method-note">For advanced users or custom installations.</p>
199
  </div>
200
  </div>
201
 
style.css CHANGED
@@ -353,12 +353,66 @@ section h2 {
353
  box-shadow: var(--shadow);
354
  }
355
 
 
 
 
 
 
 
356
  .install-card h3 {
357
  font-size: 1.3rem;
358
  margin-bottom: 20px;
359
  color: var(--secondary-color);
360
  }
361
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
362
  .code-block {
363
  background: var(--secondary-color);
364
  color: #00ff00;
 
353
  box-shadow: var(--shadow);
354
  }
355
 
356
+ .install-card.primary {
357
+ background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
358
+ border: 3px solid var(--primary-color);
359
+ box-shadow: 0 4px 20px rgba(225, 6, 0, 0.2);
360
+ }
361
+
362
  .install-card h3 {
363
  font-size: 1.3rem;
364
  margin-bottom: 20px;
365
  color: var(--secondary-color);
366
  }
367
 
368
+ .install-steps {
369
+ list-style: none;
370
+ padding-left: 0;
371
+ margin: 20px 0;
372
+ }
373
+
374
+ .install-steps li {
375
+ padding: 12px 0;
376
+ padding-left: 35px;
377
+ position: relative;
378
+ color: var(--text-color);
379
+ line-height: 1.7;
380
+ }
381
+
382
+ .install-steps li::before {
383
+ content: counter(list-item);
384
+ counter-increment: list-item;
385
+ position: absolute;
386
+ left: 0;
387
+ top: 12px;
388
+ background: var(--primary-color);
389
+ color: white;
390
+ width: 24px;
391
+ height: 24px;
392
+ border-radius: 50%;
393
+ display: flex;
394
+ align-items: center;
395
+ justify-content: center;
396
+ font-weight: bold;
397
+ font-size: 0.85rem;
398
+ }
399
+
400
+ .install-steps code {
401
+ background: var(--secondary-color);
402
+ color: #00ff00;
403
+ padding: 2px 8px;
404
+ border-radius: 4px;
405
+ font-family: 'Courier New', monospace;
406
+ font-size: 0.9rem;
407
+ }
408
+
409
+ .method-note {
410
+ color: var(--text-light);
411
+ line-height: 1.7;
412
+ margin-top: 15px;
413
+ font-size: 0.95rem;
414
+ }
415
+
416
  .code-block {
417
  background: var(--secondary-color);
418
  color: #00ff00;