Spaces:
Paused
Paused
File size: 696 Bytes
b7d4394 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Codex Proxy Developer Dashboard</title>
<script>
try {
const t = localStorage.getItem('codex-proxy-theme');
if (t === 'dark' || (!t && window.matchMedia('(prefers-color-scheme: dark)').matches))
document.documentElement.classList.add('dark');
} catch {}
</script>
</head>
<body class="bg-bg-light dark:bg-bg-dark font-display text-slate-900 dark:text-text-main antialiased min-h-screen flex flex-col transition-colors">
<div id="app"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
|