demo / index.html
maringetxway's picture
Update index.html
186dfc3 verified
raw
history blame
781 Bytes
<!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>