-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (37 loc) · 1.35 KB
/
Copy pathindex.html
File metadata and controls
43 lines (37 loc) · 1.35 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
33
34
35
36
37
38
39
40
41
42
43
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Dashboard</title>
<!-- Favicon -->
<link rel="icon" href="/src/assets/logo.svg"/>
<link rel="preload" href="/src/styles/auth.css" as="style" onload="this.onload=null;this.rel='stylesheet'"/>
<link rel="preload" href="/src/styles/customButton.css" as="style" onload="this.onload=null;this.rel='stylesheet'"/>
<link rel="preload" href="/src/styles/sidebar.css" as="style" onload="this.onload=null;this.rel='stylesheet'"/>
<link rel="preload" href="/src/styles/global.css" as="style" onload="this.onload=null;this.rel='stylesheet'"/>
<!-- Preload hero/LCP image if it’s critical -->
<link rel="preload" href="/src/assets/logo.svg" as="image"/>
</head>
<style>
html, body {
height: 100%;
margin: 0;
padding: 0;
overflow: hidden;
background-color: var(--background-color);
}
#root {
display: flex;
flex-direction: column;
height: 100%;
padding: 1.5rem; /* space on all sides */
box-sizing: border-box; /* include padding inside height */
background-color: var(--background-color);
}
</style>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>