-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
56 lines (49 loc) · 1.69 KB
/
index.html
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta name="description" content="Metronic React Demo 1" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Inter:300,400,500,600,700"
/>
<title>Metronic Theme | Keenthemes</title>
<link rel="shortcut icon" href="/media/logos/favicon.ico" />
<link rel="stylesheet" id="layout-styles-anchor" href="/splash-screen.css" />
</head>
<body id="kt_body" class="page-loading">
<noscript>You need to enable JavaScript to run this app.</noscript>
<!--begin::Theme mode setup on page load-->
<script>
let themeMode = 'system'
if (localStorage.getItem('kt_theme_mode_value')) {
themeMode = localStorage.getItem('kt_theme_mode_value')
}
if (themeMode === 'system') {
themeMode = window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light'
}
document.documentElement.setAttribute('data-bs-theme', themeMode)
</script>
<!--end::Theme mode setup on page load-->
<div id="root"></div>
<!--begin::Loading markup-->
<div id="splash-screen" class="splash-screen">
<img
src="/media/logos/default-dark.svg"
class="dark-logo"
alt="Metronic dark logo"
/>
<img
src="/media/logos/default.svg"
class="light-logo"
alt="Metronic light logo"
/>
<span>Loading ...</span>
</div>
<!--end::Loading markup-->
<div id="root-modals"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>