-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (34 loc) · 1.25 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
<!doctype html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Plantopia</title>
<!-- pwa 설정 -->
<link rel="apple-touch-icon" href="/logo192.png" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="red" />
<meta name="theme-color" content="green" />
<link rel="manifest" href="/manifest.json" />
<!-- og meta -->
<meta name="title" content="플랜토피아" />
<meta
name="description"
content="플랜토피아와 함께 슬기로운 식집사 생활을 시작하세요!"
/>
<meta property="og:type" content="website" />
<meta property="og:url" content="https://plantopia.site/" />
<meta property="og:locale" content="ko_KR" />
<meta property="og:title" content="플랜토피아" />
<meta
property="og:description"
content="플랜토피아와 함께 슬기로운 식집사 생활을 시작하세요!"
/>
<meta property="og:image" content="/og_img.png" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/index.tsx"></script>
</body>
</html>