-
Notifications
You must be signed in to change notification settings - Fork 222
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (32 loc) · 1.28 KB
/
Copy pathindex.html
File metadata and controls
32 lines (32 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>SecuScan | Executive Security Briefing</title>
<link href="https://fonts.googleapis.com/css2?family=Crimson+Pro:wght@300;400;600&family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet"/>
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:wght,FILL@100..700,0..1&display=swap" rel="stylesheet"/>
<link rel="icon" type="image/png" href="Favicon-SecuScan.png">
<script>
// Prevent flash of wrong theme on initial load
(function() {
const saved = localStorage.getItem('secuscan-theme');
const theme = saved === 'light' || saved === 'dark'
? saved
: (window.matchMedia('(prefers-color-scheme: light)').matches ? 'light' : 'dark');
const root = document.documentElement;
if (theme === 'dark') {
root.classList.add('dark');
root.classList.remove('theme-light');
} else {
root.classList.remove('dark');
root.classList.add('theme-light');
}
})();
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>