← back to Dw Boardroom V2
frontend/index.html
43 lines
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>DW Boardroom V2</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap" rel="stylesheet">
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
font-family: 'Inter', -apple-system, system-ui, sans-serif;
background: #0a0a12;
color: #e8eaf0;
min-height: 100vh;
-webkit-font-smoothing: antialiased;
}
#root { min-height: 100vh; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #252540; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #8b5cf6; }
input[type="range"] {
-webkit-appearance: none;
height: 4px;
background: #252540;
border-radius: 2px;
outline: none;
}
input[type="range"]::-webkit-slider-thumb {
-webkit-appearance: none;
width: 14px; height: 14px;
border-radius: 50%;
background: #8b5cf6;
cursor: pointer;
}
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>