-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (44 loc) · 1.56 KB
/
index.html
File metadata and controls
50 lines (44 loc) · 1.56 KB
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
<!doctype html>
<html lang="ko">
<head>
<title>여기가</title>
<link rel="icon" type="image/svg+xml" href="/Favicon.svg" />
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="Team-ilmansa" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<!-- Open Graph (Facebook, Kakao 등) SNS 공유용 메타 태그 -->
<!--
ToDo: 공유 시 이미지 설정
<meta property="og:image" content="/og-image.png" />
-->
<meta property="og:title" content="여기가" />
<meta
property="og:description"
content="여행의 시작부터 마무리까지 함께하는 여행 플랫폼"
/>
<meta property="og:url" content="https://yeogiga.com" />
<meta property="og:type" content="website" />
<!-- Naver 지도 불러오기 -->
<script
type="text/javascript"
src="https://oapi.map.naver.com/openapi/v3/maps.js?ncpKeyId=%VITE_NAVER_MAP_KEY%"
></script>
<!--
ToDo: 완성 후 검색엔진에 노출하기 위한 메타 태그들
<meta name="Keywords" content="여기가" />
검색엔진에 의해 검색되는 단어
<meta
name="Description"
content="여행의 시작부터 마무리까지 함께하는 여행 플랫폼"
/>
검색 결과에 표시되는 설명
<meta name="robots" content="index, follow" />
검색 엔진에 노출 및 링크 연결
-->
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>