-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (56 loc) · 1.67 KB
/
Copy pathindex.html
File metadata and controls
57 lines (56 loc) · 1.67 KB
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
57
<!doctype html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="alternate icon" href="/favicon.ico" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, viewport-fit=cover"
/>
<meta
name="description"
content="기억이 아닌 기록으로 내 장 건강을 확인하세요"
/>
<!-- Open Graph -->
<meta property="og:type" content="website" />
<meta property="og:site_name" content="Boogle" />
<meta property="og:title" content="Boogle" />
<meta
property="og:description"
content="기억이 아닌 기록으로 내 장 건강을 확인하세요"
/>
<meta
property="og:image"
content="https://boogle-web.vercel.app/og-image.png"
/>
<meta property="og:url" content="https://boogle-web.vercel.app" />
<!-- Twitter / X -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Boogle" />
<meta
name="twitter:description"
content="기억이 아닌 기록으로 내 장 건강을 확인하세요"
/>
<meta
name="twitter:image"
content="https://boogle-web.vercel.app/og-image.png"
/>
<meta name="theme-color" content="#FF8253" />
<style>
html,
body,
#root {
min-height: 100%;
margin: 0;
background: var(--root-background-color, #ffffff);
}
</style>
<title>Boogle</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>