-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (48 loc) · 1.62 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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta name="description" content="AI가 알려주는 나의 T성향" />
<meta name="keywords" content="mbti, chatgpt" />
<meta name="og:site_name" content="너 T야?" />
<meta name="og:title" content="너 T야?" />
<meta name="og:description" content="AI가 알려주는 나의 T성향" />
<meta name="og:type" content="website" />
<!-- <meta name="og:url" content="" /> -->
<meta property="og:image" content="/temp-og.png" />
<meta
name="viewport"
content="initial-scale=1.0,user-scalable=no,maximum-scale=1,width=device-width"
/>
<meta
http-equiv="Content-Security-Policy"
content="upgrade-insecure-requests"
/>
<link rel="apple-touch-icon" href="/icon.png" />
<link rel="shortcut icon" href="/icon.png" />
<link rel="icon" type="image/svg+xml" href="/favicon.ico" />
<title>너 T야? - AI가 판별해준다</title>
<script
src="https://t1.kakaocdn.net/kakao_js_sdk/2.2.0/kakao.min.js"
integrity="sha384-x+WG2i7pOR+oWb6O5GV5f1KN2Ko6N7PTGPS7UlasYWNxZMKQA63Cj/B2lbUmUfuC"
crossorigin="anonymous"
></script>
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-14V9VRL1MW"
></script>
<script>
window.dataLayer = window.dataLayer || []
function gtag() {
dataLayer.push(arguments)
}
gtag('js', new Date())
gtag('config', 'G-14V9VRL1MW')
</script>
</head>
<body>
<div id="overlay"></div>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>