File size: 781 Bytes
e60144f
 
 
186dfc3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
e60144f
 
186dfc3
 
e60144f
 
186dfc3
e60144f
 
e21192d
7dbc6c7
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
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>LeRobot Hackathon Demos</title>
  <style>
    body {
      font-family: Arial, sans-serif;
      background-color: #f0f0f0;
      margin: 0;
      padding: 20px;
    }
    .video-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }
    .video-grid video {
      width: 320px;
      height: 180px;
      object-fit: cover;
      border: 2px solid #ccc;
      border-radius: 8px;
    }
  </style>
</head>
<body>
  <h1>LeRobot Hackathon Demo Videos</h1>
  <div class="video-grid" id="videoContainer"></div>

  <script>
    // JavaScript will be added here
  </script>
</body>
</html>