-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
59 lines (59 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
55
56
57
58
59
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<link rel="shortcut icon" href="logo.png" />
<link rel="apple-touch-icon" href="logo.png" />
<link rel="manifest" href="/manifest.json" />
<link
rel="apple-touch-icon"
sizes="192x192"
href="/icons/icon-192x192.png"
/>
<link
rel="apple-touch-icon"
sizes="256x256"
href="/icons/icon-256x256.png"
/>
<link
rel="apple-touch-icon"
sizes="384x384"
href="/icons/icon-384x384.png"
/>
<link
rel="apple-touch-icon"
sizes="512x512"
href="/icons/icon-512x512.png"
/>
<meta
name="viewport"
content="user-scalable=no, width=device-width, initial-scale=1.0, maximum-scale=1.0"
/>
<meta
name="theme-color"
media="(prefers-color-scheme: light)"
content="#f5f5f5"
/>
<meta
name="theme-color"
media="(prefers-color-scheme: dark)"
content="#333333"
/>
<meta property="og:type" content="website" />
<meta property="og:url" content="https://24hoursarenotenough.42seoul.kr" />
<meta property="og:title" content="24HANE" />
<meta
property="og:image"
content="https://24hoursarenotenough.42seoul.kr/logo.png"
/>
<meta property="og:description" content="42서울 출입기록 관리 시스템" />
<meta property="og:site_name" content="24HANE" />
<meta property="og:locale" content="ko_KR" />
<title>24HANE</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>