-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
51 lines (44 loc) · 1.72 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
<!doctype html>
<html lang="en" class="h-full">
<head>
<!-- Title -->
<title>Iris Docs</title>
<!-- Links -->
<link rel="icon" type="image/svg+xml" href="/favicon.ico" />
<link rel="canonical" href="" />
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<meta name="description" content="" />
<meta name="keywords" content="" />
<meta name="theme-color" 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" />
</head>
<body>
<div id="root" class="flex flex-col min-h-screen bg-base-200"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>