Anne-Charlotte's picture
Update index.html
8e0f574 verified
raw
history blame
6.9 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Reachy Mini - Assembly Guide - Beta</title>
<meta name="description" content="Step-by-step assembly guide for Reachy Mini Robot. Follow 51 detailed steps to build your robot.">
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Header -->
<header class="header">
<div class="container">
<div class="header-content">
<div class="header-left">
<img src="assets/reachy-mini-icon-happy.png" alt="Reachy Mini Robot" class="robot-icon">
<div>
<h1 class="title">Reachy Mini</h1>
<p class="subtitle">Assembly Guide</p>
</div>
</div>
<!-- STEPS
<div class="steps-badge">
<svg class="icon" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z"/>
</svg>
<span class="steps-text">51 Steps</span>
</div>
-->
</div>
</div>
</header>
<!-- Main Content -->
<main class="main-content">
<div class="container">
<!-- Introduction -->
<div class="intro-section">
<h2 class="intro-title">Welcome to Your Assembly Journey</h2>
<p class="intro-text">
Follow this step-by-step guide to assemble your Reachy Mini <strong>Wireless</strong>.
Use the navigation buttons to move through each step at your own pace.
</p>
</div>
<!-- Carousel -->
<div class="carousel">
<!-- Step Counter -->
<div class="step-counter">
<span id="stepDisplay" class="step-counter-text">Step 1/51</span>
</div>
<!-- Image Display -->
<div class="image-container">
<img id="stepImage" src="assets/p9.jpg" alt="Assembly step 1" class="step-image">
<div id="placeholderText" class="placeholder" style="display: none;">
<div class="placeholder-icon">
<span id="placeholderNumber">1</span>
</div>
<p class="placeholder-text">Step <span id="placeholderStep">1</span> image will be added here</p>
</div>
</div>
<!-- Navigation Controls -->
<div class="controls">
<div class="controls-top">
<button id="prevBtn" class="btn btn-secondary">
<svg class="icon-left" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<polyline points="15 18 9 12 15 6"></polyline>
</svg>
Previous
</button>
<!-- Step Indicators -->
<div class="indicators" id="indicators"></div>
<button id="nextBtn" class="btn btn-primary">
Next
<svg class="icon-right" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<polyline points="9 18 15 12 9 6"></polyline>
</svg>
</button>
</div>
<!-- Progress Bar -->
<div class="progress-bar">
<div id="progressFill" class="progress-fill"></div>
</div>
</div>
</div>
<!-- Video Tutorial Section -->
<div class="video-section">
<!-- Left - Video -->
<div class="video-wrapper">
<iframe
src="https://www.youtube.com/embed/_r0cHySFbeY"
title="Reachy Mini Assembly Tutorial"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
referrerpolicy="strict-origin-when-cross-origin"
allowfullscreen
></iframe>
</div>
<!-- Right - Text content -->
<div class="video-text">
<h2>Follow Steps by Steps</h2>
<p class="video-description">
Watch the video to easily follow the assembly at your own pace!
</p>
<div class="tips-list">
<div class="tip-item">
<span class="tip-icon">⏱️</span>
<div>
<h4>Take Your Time</h4>
<p>Each step is designed to be completed in approximately 2 minutes. Don't rush!</p>
</div>
</div>
<div class="tip-item">
<span class="tip-icon">🔧</span>
<div>
<h4>Check Your Parts</h4>
<p>Make sure you have all the components listed in each step before proceeding.</p>
</div>
</div>
<div class="tip-item">
<span class="tip-icon"></span>
<div>
<h4>Have Fun!</h4>
<p>Enjoy the assembly process and watch your Reachy Mini come to life.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</main>
<!-- Footer -->
<footer class="footer">
<div class="container">
<p class="footer-text">
Need help? Contact us on <a href="https://discord.gg/HDrGY9eJHt" target="_blank">Discord</a> and join the community.
</p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>