-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
168 lines (158 loc) · 4.31 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
<!doctype html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<link
href="/favicon.ico"
rel="icon"
/>
<link
href="//spoqa.github.io/spoqa-han-sans/css/SpoqaHanSansNeo.css"
rel="stylesheet"
type="text/css"
/>
<link
rel="manifest"
href="/manifest.json"
/>
<meta
name="viewport"
content="width=device-width, initial-scale=1.0 viewport-fit=cover"
/>
<link
rel="apple-touch-icon"
href="/icons/maskable_icon_x192.png"
/>
<meta
name="apple-mobile-web-app-capable"
content="yes"
/>
<meta
name="apple-mobile-web-app-status-bar-style"
content="black"
/>
<meta
name="apple-mobile-web-app-title"
content="kiwing"
/>
<!-- HTML Meta Tags -->
<title>면접 아카이빙 서비스 | 키윙</title>
<meta
name="description"
content="취업 준비, 이직 과정에서 마주한 면접을 준비하는 데에 도움이 되고자 면접을 효율적이고 빠르게 준비할 수 있는 기능을 제공하는 서비스"
/>
<!-- Facebook Meta Tags -->
<meta
property="og:url"
content="https://kiwing.kr/"
/>
<meta
property="og:type"
content="website"
/>
<meta
property="og:title"
content="kiwing"
/>
<meta
property="og:description"
content="취업 준비, 이직 과정에서 마주한 면접을 준비하는 데에 도움이 되고자 면접을 효율적이고 빠르게 준비할 수 있는 기능을 제공하는 서비스"
/>
<meta
property="og:image"
content="https://kiwing.kr/kiwing_square_green.png"
/>
<!-- Twitter Meta Tags -->
<meta
name="twitter:card"
content="summary_large_image"
/>
<meta
property="twitter:domain"
content="kiwing.kr"
/>
<meta
property="twitter:url"
content="https://kiwing.kr/"
/>
<meta
name="twitter:title"
content="kiwing"
/>
<meta
name="twitter:description"
content="취업 준비, 이직 과정에서 마주한 면접을 준비하는 데에 도움이 되고자 면접을 효율적이고 빠르게 준비할 수 있는 기능을 제공하는 서비스"
/>
<meta
name="twitter:image"
content="https://kiwing.kr/kiwing_square_green.png"
/>
<meta
name="theme-color"
content="#48da79"
/>
<!-- Meta Tags Generated by opengraph.xyz -->
<!-- Hotjar Tracking Code for kiwing -->
<script>
(function (h, o, t, j, a, r) {
h.hj =
h.hj ||
function () {
(h.hj.q = h.hj.q || []).push(arguments);
};
h._hjSettings = { hjid: 3905732, hjsv: 6 };
a = o.getElementsByTagName('head')[0];
r = o.createElement('script');
r.async = 1;
r.src = t + h._hjSettings.hjid + j + h._hjSettings.hjsv;
a.appendChild(r);
})(window, document, 'https://static.hotjar.com/c/hotjar-', '.js?sv=');
</script>
<!-- Google tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-JY80LMCG5P"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-JY80LMCG5P');
</script>
<script>
if (
/Android/i.test(navigator.userAgent) &&
/Chrome/i.test(navigator.userAgent) &&
window.matchMedia('(display-mode: standalone)').matches
) {
window.addEventListener('popstate', function () {
const location = window.location;
const isBackActive =
location.pathname !== '/shared' &&
!location.pathname.includes(`/user/`) &&
location.pathname !== '/hub' &&
location.pathname !== '/';
if (!isBackActive) {
window.history.pushState({ noBackExitsApp: true }, '');
}
});
}
</script>
</head>
<body>
<div id="root"></div>
<script
type="module"
src="/src/main.tsx"
></script>
<script>
if ('serviceWorker' in navigator) {
window.addEventListener('load', () => {
navigator.serviceWorker.register('/serviceWorker.js');
});
}
</script>
</body>
</html>