22 lines
661 B
HTML
22 lines
661 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta name="description" content="Dimension Lab dashboard runtime" />
|
|
<title>Dimension Lab</title>
|
|
<script>
|
|
try {
|
|
const theme = localStorage.getItem("dashboard-ui-theme");
|
|
document.documentElement.dataset.uiTheme =
|
|
theme === "light" ? "light" : "dark";
|
|
} catch {
|
|
document.documentElement.dataset.uiTheme = "dark";
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|