-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (48 loc) · 1.83 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
53
54
55
56
<!doctype html>
<html lang="en" class="h-full">
<head>
<!-- Title -->
<title>React-Starter-Kit</title>
<!-- Links -->
<link rel="icon" type="image/png" href="" />
<link rel="canonical" href="" />
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="" />
<meta name="keywords" content="" />
<!-- Opengraph -->
<meta property="og:type" content="website" />
<meta property="og:title" content="" />
<meta property="og:description" content="" />
<meta property="og:image" content="" />
<meta property="og:url" content="" />
<meta property="og:site_name" content="" />
<!-- Facebook Meta Tags -->
<meta property="og:url" content="" />
<meta property="og:type" content="website" />
<meta property="og:title" content="" />
<meta property="og:description" content="" />
<meta property="og:image" content="" />
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta property="twitter:domain" content="" />
<meta property="twitter:url" content="" />
<meta name="twitter:title" content="" />
<meta name="twitter:description" content="" />
<meta name="twitter:image" content="" />
<!-- robots -->
<meta name="robots" content="index, follow" />
<meta name="googlebot" content="index, follow" />
<!-- Manifest -->
<link rel="manifest" href="/manifest.json" />
<!-- Fonts -->
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap"
rel="stylesheet"
/>
</head>
<body class="flex min-w-[100dvw] min-h-[100dvh] overflow-x-hidden">
<div id="root" class="w-full min-h-full"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>