-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (39 loc) · 1.18 KB
/
index.html
File metadata and controls
44 lines (39 loc) · 1.18 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
<!DOCTYPE html>
<html lang="en" translate="no">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/favicon.png">
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
<title>Manager - MapSwipe</title>
<style>
html, body {
margin: 0;
padding: 0;
}
body {
min-height: 100vh;
font-family: var(--font-family-sans-serif);
color: var(--color-text);
font-weight: var(--font-weight-medium);
}
#app-container {
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<noscript>
Manager Dashboard needs JS.
</noscript>
<div id="app-container"></div>
<script
type="module"
src="/app/index.tsx"
></script>
<link href="https://fonts.googleapis.com/css2?family=Cabin&family=Sofia+Sans+Semi+Condensed:wght@1..1000&family=Source+Code+Pro:wght@200..900&display=swap" rel="stylesheet">
</body>
</html>