mirror of
https://github.com/allaunthefox/Research-Stack.git
synced 2026-07-31 03:05:21 +00:00
26 lines
785 B
HTML
26 lines
785 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="Browse cached CAD parts, assemblies, and prompt-ready references" />
|
|
<title>CAD Explorer</title>
|
|
<script>
|
|
(function () {
|
|
const root = document.documentElement;
|
|
root.dataset.themePreference = "dark";
|
|
root.dataset.theme = "dark";
|
|
root.classList.add("dark");
|
|
root.style.colorScheme = "dark";
|
|
try {
|
|
window.localStorage.setItem("cad-explorer-theme", "dark");
|
|
} catch (_) {
|
|
}
|
|
})();
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/main.jsx"></script>
|
|
</body>
|
|
</html>
|