-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
22 lines (22 loc) · 836 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/svg+xml" href="/fireblocks.svg" />
<meta property="og:image" content="/public/demo.webp" />
<meta name="description" content="User Management Application built with modern web technologies including Vite, TypeScript, React, and more. This is a Fireblocks exercise." />
<title>Fireblocks Exercice</title>
<script>
(function() {
const storageKey = 'ui-theme';
const theme = localStorage.getItem(storageKey) || 'light';
document.documentElement.classList.add(theme);
})();
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>