visual upgrade
ci / build-and-design (push) Failing after 13s

This commit is contained in:
Jason Stedwell
2026-07-23 04:23:19 -05:00
parent 9d7f593307
commit 822d8e41e6
53 changed files with 7757 additions and 285 deletions
+25
View File
@@ -0,0 +1,25 @@
<!doctype html>
<html lang="en" class="dark">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="@jason/ui-kit living component showcase" />
<title>@jason/ui-kit — Component Showcase</title>
<script>
(() => {
try {
const stored = localStorage.getItem("jason-ui-theme") || "system";
const mode = stored === "system"
? (matchMedia("(prefers-color-scheme: light)").matches ? "light" : "dark")
: stored;
document.documentElement.className = mode;
document.documentElement.style.colorScheme = mode;
} catch {}
})();
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/main.tsx"></script>
</body>
</html>