logic-engine / node3-ui /index.html
ghostdrive1's picture
Upload folder using huggingface_hub
1cf3e52 verified
Raw
History Blame Contribute Delete
641 Bytes
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Manus Clone Interface</title>
</head>
<body class="bg-zinc-950 text-gray-100">
<script>
window.addEventListener('error', (e) => {
if(e.target && e.target.src) {
document.body.innerHTML = '<div style="color:white;background:red;padding:20px;"><h1>Failed to load resource</h1><p>' + e.target.src + '</p></div>';
}
}, true);
</script>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>