feat: implement initial frontend application with Monaco editor, Docker Compose stack management, and container monitoring.

This commit is contained in:
SaelixCode
2026-02-25 14:18:10 -05:00
parent cd006feb6a
commit aeb3d6e812
4 changed files with 182 additions and 99 deletions
+12
View File
@@ -5,6 +5,18 @@
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>frontend</title>
<script>
(function() {
try {
var saved = localStorage.getItem('sencho-theme');
if (saved === 'light') {
document.documentElement.classList.remove('dark');
} else {
document.documentElement.classList.add('dark');
}
} catch (e) {}
})();
</script>
</head>
<body>
<div id="root"></div>