Jesús Pérez 09a97ac8f5
chore: update platform submodule to monorepo crates structure
Platform restructured into crates/, added AI service and detector,
       migrated control-center-ui to Leptos 0.8
2026-01-08 21:32:59 +00:00

27 lines
712 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Basic Test</title>
</head>
<body>
<div style="padding: 20px;">
<h1>Basic HTML Test</h1>
<p id="status">JavaScript not loaded</p>
</div>
<script>
console.log("🟢 Basic HTML/JS test starting");
document.getElementById('status').innerHTML = '✅ JavaScript is working!';
// Test fetch capability
fetch('/')
.then(response => {
console.log("🟢 Network fetch works:", response.status);
})
.catch(error => {
console.error("❌ Network fetch failed:", error);
});
</script>
</body>
</html>