- color-scheme: dark on html, theme-color meta, touch-action: manipulation - prefers-reduced-motion: disable animations/transitions globally - Intl.RelativeTimeFormat + Intl.NumberFormat replace hardcoded formats - URL state sync: viewMode, selectedTiers, anomalyOnly persist via search params (replaceState) - Skip-to-content link for keyboard navigation - tabular-nums on all numeric displays (stats, duration, counts) - min-w-0 on truncated flex/grid children - overscroll-behavior: contain on dialog panel - aria-live on loading skeleton - "Loading..." → "Loading…" (proper ellipsis)
20 lines
657 B
HTML
20 lines
657 B
HTML
<!DOCTYPE html>
|
|
<html lang="en" style="color-scheme: dark">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta name="theme-color" content="#0a0a0a" />
|
|
<title>Boltbot Dashboard</title>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
<link
|
|
href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap"
|
|
rel="stylesheet"
|
|
/>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|