-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdashboard.html
More file actions
54 lines (54 loc) · 2.12 KB
/
Copy pathdashboard.html
File metadata and controls
54 lines (54 loc) · 2.12 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
44
45
46
47
48
49
50
51
52
53
54
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<!-- <link rel="icon" href="./favicon.ico" /> -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>JDH Dashboard</title>
<!-- Preconnect for Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" crossorigin />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<!-- Preload for Material Symbols Outlined Icons -->
<link
rel="preload"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200&icons=home,notes,description,campaign,import_contacts,person,link,search,upload_file,settings,check_circle,palette,edit,share,rocket_launch,inventory_2,help,radio_button_unchecked,check_circle,error,cancel,preview,filter_alt&display=block"
as="style"
onload="this.onload=null;this.rel='stylesheet'"
/>
<!-- Preload and stylesheet for each font family -->
<!-- DM Sans-->
<link
rel="preload"
as="style"
href="https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap"
/>
<!-- Fira Code-->
<link
rel="preload"
as="style"
href="https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;700&display=swap&subset=latin-ext"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;700&display=swap&subset=latin-ext"
/>
<!-- Fira Sans-->
<link
rel="preload"
as="style"
href="https://fonts.googleapis.com/css2?family=Fira+Sans:wght@400;700&display=swap&subset=latin-ext"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Fira+Sans:wght@400;700&display=swap&subset=latin-ext"
/>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/dashboard/main.tsx"></script>
</body>
</html>