-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (45 loc) · 1.66 KB
/
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
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
<!-- Doctype HTML5 -->
<!doctype html>
<html lang="en" dir="ltr" class="dark subpixel-antialiased">
<head>
<!-- Set character encoding for the document -->
<meta charset="utf-8" />
<!-- Viewport for responsive web design -->
<meta
name="viewport"
content="width=device-width, initial-scale=1, viewport-fit=cover"
/>
<!-- HTML Meta -->
<!-- Document Title -->
<title>%VITE_APP_NAME%</title>
<!-- Meta Description -->
<meta name="description" content="%VITE_APP_DESCRIPTION%" />
<!-- Icons -->
<link rel="icon" type="image/svg+xml" href="/favicon.svg?v=1" />
<!-- Google / Search Engine Tags -->
<meta itemprop="name" content="%VITE_APP_NAME%" />
<meta itemprop="description" content="%VITE_APP_DESCRIPTION%" />
<!-- openGraph -->
<meta property="og:type" content="website" />
<meta property="og:title" content="%VITE_APP_NAME%" />
<meta property="og:description" content="%VITE_APP_DESCRIPTION%" />
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary" />
<!-- oEmbed -->
<link type="application/json+oembed" href="/oembed.json?v=1" />
<!-- Google Fonts -->
<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=Fira+Code&family=Fira+Sans:wght@800;900&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div
id="root"
class="grid grid-cols-1 grid-rows-[auto_1fr_auto] min-h-dvh bg-asphalt text-alto-100"
></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>