-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
22 lines (21 loc) · 937 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap"
rel="stylesheet" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@40,400,0,0" />
<title>Vite + React + TS</title>
<script type="module" src="/src/index.tsx"></script>
</head>
<body class="flex min-h-screen flex-col text-slate-700 antialiased dark:bg-black dark:text-slate-200">
<div class="flex flex-grow flex-col" id="root"></div>
</body>
</html>