Spaces:
Running
Running
File size: 827 Bytes
c8b4583 540cfa6 c8b4583 540cfa6 c8b4583 540cfa6 |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>🤖 lerobot.js - Robotics in the Browser</title>
<meta
name="description"
content="State-of-the-art AI for real-world robotics in JavaScript/TypeScript"
/>
<style>
/* Prevent flash of unstyled content */
body {
opacity: 0;
}
body.loaded {
opacity: 1;
transition: opacity 0.3s ease;
}
</style>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
<script>
// Add loaded class when page is ready
window.addEventListener("load", () => {
document.body.classList.add("loaded");
});
</script>
</body>
</html>
|