mirror of
https://github.com/Studio-Saelix/sencho.git
synced 2026-07-27 12:18:59 +00:00
5fe416f941
- Created a new index.html file for the frontend with theme handling and linked assets. - Added a Vite logo SVG to the public directory. - Updated the system stats API to include network statistics (rxBytes, txBytes, rxSec, txSec). - Enhanced the EditorLayout component to display network I/O rates for containers. - Modified HomeDashboard to show host network statistics with appropriate formatting.
27 lines
813 B
HTML
27 lines
813 B
HTML
<!doctype html>
|
|
<html lang="en" class="dark">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<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>
|
|
<script type="module" crossorigin src="/assets/index-DQZd4c74.js"></script>
|
|
<link rel="stylesheet" crossorigin href="/assets/index-dtrnzjcf.css">
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
</body>
|
|
</html>
|