-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (45 loc) · 2.19 KB
/
index.html
File metadata and controls
53 lines (45 loc) · 2.19 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
51
52
53
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<!--SEO-->
<meta name="keywords" content="MangoBoss,parttime,management,owner"/>
<meta name="robots" content="index, follow">
<meta name="googlebot" content="index, follow">
<!--SNS meta tag-->
<meta content="Mango Boss" property="og:title" />
<meta content="MangoBoss : Part-time Worker Management WebApp" property="og:description" />
<meta property="og:url" content="https://mangoboss.com" />
<meta property="og:image" content="/logo-192x192.png" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="MangoBoss" />
<meta name="twitter:description" content="Manage your part-time workers easily!" />
<meta name="twitter:image" content="https://yourdomain.com/social-preview.png" />
<!--mobile pwa-->
<meta name="application-name" content="MangoBoss">
<meta name="apple-mobile-web-app-title" content="MangoBoss">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<link rel="apple-touch-icon" sizes="180x180" href="/logo-180x180.png" />
<link rel="apple-touch-icon" sizes="152x152" href="/logo-152x152.png" />
<!--pc pwa-->
<!--window-->
<meta name="msapplication-TileColor" content="#FFFFFF">
<meta name="msapplication-TileImage" content="/logo-192x192.png">
<link rel="icon" type="image/png" href="/logo-192x192.png" />
<!--mac safari-->
<link rel="mask-icon" href="/logo-192x192.svg" color="#FFFFFF">
<!--basic-->
<title>Mango Boss</title>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="MangoBoss : Part-time Worker Management WebApp"/>
<meta name="author" content="PaleBlueNote">
<meta name="theme-color" content="#ffffff" />
<!-- Kakao OAuth -->
<script src="https://developers.kakao.com/sdk/js/kakao.js"></script>
<script type="text/javascript" src="https://oapi.map.naver.com/openapi/v3/maps.js?ncpKeyId=pbs5uulqrp&submodules=geocoder"></script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>