-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
72 lines (63 loc) · 2.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
<!doctype html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/images/logo.png" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, user-scalable=no"
/>
<title>말랑플레이스</title>
<meta name="title" content="말랑플레이스" />
<meta
name="description"
content="말랑이들과 함께하는 우리 세상, 말랑플레이스"
/>
<!-- Open Graph -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://temp-url.com" />
<meta property="og:title" content="말랑플레이스" />
<meta
property="og:description"
content="말랑이들과 함께하는 우리 세상, 말랑플레이스"
/>
<meta
property="og:image"
content="https://temp-url.com/images/meta-image.png"
/>
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://temp-url.com" />
<meta property="twitter:title" content="말랑플레이스" />
<meta
property="twitter:description"
content="말랑이들과 함께하는 우리 세상, 말랑플레이스"
/>
<meta
property="twitter:image"
content="https://temp-url.com/images/meta-image.png"
/>
<link rel="stylesheet" href="/src/assets/stylesheets/style.css" />
<link
href="https://hangeul.pstatic.net/hangeul_static/css/maru-buri.css"
rel="stylesheet"
/>
<link
rel="preload"
as="font"
type="font/woff2"
crossorigin="anonymous"
href="./fonts/SUIT-Variable.woff2"
/>
<!-- Kakao API -->
<script
type="text/javascript"
src="//dapi.kakao.com/v2/maps/sdk.js?appkey=%VITE_KAKAO_API_KEY%&libraries=services,drawing,clusterer"
></script>
<script src="//t1.daumcdn.net/mapjsapi/bundle/postcode/prod/postcode.v2.js"></script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>