я косяк, поправил веб. Капитан, работайте!

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
влад
2026-07-16 11:06:47 +03:00
co-authored by Cursor
parent 148d645760
commit 2c294424ef
85 changed files with 17410 additions and 110 deletions
+26
View File
@@ -0,0 +1,26 @@
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover">
<meta name="theme-color" content="#0f1114">
<script>
(function () {
try {
var saved = localStorage.getItem("theme");
var theme = saved === "light" || saved === "dark" ? saved : "dark";
document.documentElement.setAttribute("data-theme", theme);
} catch (e) {}
})();
</script>
<title>Комптон — первоначальная настройка</title>
<link rel="stylesheet" href="/static/css/wesp-logo-loader.css">
<link rel="stylesheet" href="/static/css/wesp-setup.css">
</head>
<body>
<div id="wespSetupRoot" class="wesp-setup"></div>
<script src="/static/js/kiosk-calibration.js"></script>
<script src="/static/js/wesp-user-messages.js?v=1"></script>
<script type="module" src="/static/js/pages/setup-wizard.js"></script>
</body>
</html>