-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
41 lines (39 loc) · 1.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- GA -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-E5320FQNJ8"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-E5320FQNJ8");
</script>
<!-- GA -->
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="title" content="라인나우" />
<meta
name="description"
content="동국대학교에서 만나는 부스 웨이팅사이트"
/>
<meta property="og:type" content="website" />
<meta property="og:title" content="라인나우" />
<meta
property="og:description"
content="동국대학교에서 만나는 부스 웨이팅사이트"
/>
<meta property="og:image" content="/images/image_OG_tag.png" />
<link rel="icon" href="/images/image_favicon.svg" />
<title>라인나우</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>