admin_panel/frontend/index.html

24 lines
803 B
HTML

<!DOCTYPE html>
<html class="h-full" lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, viewport-fit=cover maximum-scale=1.0, user-scalable=no"
/>
<title>Admin Panel</title>
<script>
// Apply dark theme immediately to prevent flash of light theme
(function() {
var stored = localStorage.getItem('admin-panel-theme');
var isDark = stored ? stored === 'dark' : window.matchMedia('(prefers-color-scheme: dark)').matches;
document.documentElement.setAttribute('data-theme', isDark ? 'dark' : 'light');
})();
</script>
</head>
<body class="h-full">
<div id="app" class="h-full"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>