generated from fresh-app/fresh-vite-app-svelte-ts
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
27 lines (27 loc) · 1019 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
23
24
25
26
27
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/citw_icon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<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=Karla:wght@200;300;400;500;600;700&display=swap"
rel="stylesheet"
/>
<meta name="theme-color" content="#334155" />
<title>Code in the Wind LIVE VIEW</title>
</head>
<body class="bg-slate-600 text-white font-sans">
<div class="absolute inset-0 bg-grid opacity-[0.16]"></div>
<div
class="absolute inset-0 bg-gradient-to-b from-slate-700 to-slate-700/0"
></div>
<div
class="absolute inset-0 bg-gradient-to-b from-slate-700 to-slate-700/0"
></div>
<div id="app" class="absolute inset-0"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>