-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
90 lines (80 loc) · 3.46 KB
/
index.html
File metadata and controls
90 lines (80 loc) · 3.46 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!doctype html>
<html lang="ko">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-HK4GCX7LJ1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-HK4GCX7LJ1');
</script>
<meta charset="UTF-8" />
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="mobile-web-app-capable" content="yes" />
<title>러닝한다이</title>
<meta name="description" content="부산 러닝 코스를 찾는다면? 러닝한다이!" />
<meta
name="keywords"
content="부산 러닝, 부산 러닝 코스, 러닝 코스 추천, 부산 러닝 크루, 러닝 코스 추천, 부산 여행, 마라톤, 달리기, 트랙, 코스 추천"
/>
<meta name="author" content="Team Chuck" />
<meta name="google-site-verification" content="RNvhNHYWyECPU2kOEwEx7GJBolPHMhioaMN9dWLtpC0" />
<meta name="naver-site-verification" content="df73d2ec6164ff00573f10f8fe024dd1e34696ef" />
<!-- PWA Manifest -->
<link rel="manifest" href="/manifest.json" />
<!-- Apple Touch Icon -->
<link rel="apple-touch-icon" href="/AppImages/ios/180.png" />
<!-- Apple Status Bar -->
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
<!-- Theme Color -->
<meta name="theme-color" content="#4561ff" />
<!-- iOS Splash Screen -->
<link rel="apple-touch-startup-image" href="/AppImages/android/android-launchericon-512-512.png" />
<!-- Open Graph 태그 -->
<meta property="og:title" content="부산 러닝 코스 - 러닝한다이" />
<meta property="og:description" content="부산 러닝 코스 추천, 탐색 서비스 러닝한다이" />
<meta property="og:image" content="/runninghandai-thumbnail.png" />
<meta property="og:type" content="website" />
<meta property="og:site_name" content="러닝한다이" />
<!-- Twitter Cards -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="부산 러닝 코스 - 러닝한다이" />
<meta name="twitter:description" content="부산 러닝 코스 추천, 탐색 서비스 러닝한다이" />
<!-- Pretendard Font -->
<link rel="preconnect" href="https://cdn.jsdelivr.net" />
<link
rel="stylesheet"
as="style"
crossorigin
href="https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css"
/>
<!-- Image Preload -->
<link rel="preload" as="image" href="/src/assets/images/background-img.png" />
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Organization",
"name": "러닝한다이",
"url": "https://runninghandai.com",
"sameAs": [
"https://www.instagram.com/running_handai"
]
}
</script>
</head>
<body>
<div id="root"></div>
<!-- Kakao SDK -->
<script
src="https://t1.kakaocdn.net/kakao_js_sdk/2.7.2/kakao.min.js"
integrity="sha384-TiCUE00h649CAMonG018J2ujOgDKW/kVWlChEuu4jK2vxfAAD0eZxzCKakxg55G4"
crossorigin="anonymous"
></script>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>