-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (51 loc) · 2.04 KB
/
index.html
File metadata and controls
57 lines (51 loc) · 2.04 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" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>BaB | Bond and Bite</title>
<meta name="google-site-verification" content="S0tXD18SfPXYi9bCkHfpoyDVp6FQamBnAKH5h_ZJTwE" />
<meta name="google-site-verification" content="L0BKsVFWS26KFMNZq9jeJRO7Bi_xTkE5RcZd0FyB48M" />
<!-- Favicon -->
<link rel="icon" type="image/svg+xml" href="/BaB.svg" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<meta name="theme-color" content="#FF5722" />
<!-- SEO -->
<meta name="title" content="BaB | Bond and Bite" />
<meta
name="description"
content="함께 식사할 친구를 찾고, 새로운 맛집을 공유하는 미식 커뮤니티 플랫폼 BaB."
/>
<!-- Open Graph -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://bab-mu.vercel.app/" />
<meta property="og:title" content="BaB | Bond and Bite" />
<meta
property="og:description"
content="함께 식사할 친구를 찾고, 새로운 맛집을 공유하는 미식 커뮤니티 플랫폼 BaB."
/>
<meta property="og:image" content="https://bab-mu.vercel.app/og-image.png" />
<!-- 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=Black+Han+Sans&family=Noto+Sans+KR:wght@100..900&display=swap"
rel="stylesheet"
/>
</head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-JZ3JTGP4KZ"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-JZ3JTGP4KZ');
</script>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>