-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (40 loc) · 1.21 KB
/
index.html
File metadata and controls
45 lines (40 loc) · 1.21 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="preload"
href="/fonts/Inter-Regular.woff"
as="font"
type="font/woff"
crossorigin="anonymous"
/>
<link
rel="preload"
href="/fonts/Inter-Medium.woff"
as="font"
type="font/woff"
crossorigin="anonymous"
/>
<link
rel="preload"
href="/fonts/Inter-SemiBold.woff"
as="font"
type="font/woff"
crossorigin="anonymous"
/>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap" rel="stylesheet">
<title>Inner Circle Employees</title>
</head>
<body>
<div id="root"></div>
<!-- // https://vite.dev/guide/env-and-mode#html-constant-replacement -->
<script src="%VITE_BASE_PATH%/env-config.js"></script>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>