-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (49 loc) · 1.72 KB
/
index.html
File metadata and controls
53 lines (49 loc) · 1.72 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="ko">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- 기본 SEO -->
<title>콕플 (Cockple) | 배드민턴 모임 플래폼</title>
<meta
name="description"
content="배드민턴 모임을 만들고, 추천 모임과 운동을 찾아보는 가장 스마트한 플랫폼"
/>
<link rel="canonical" href="https://www.cockple.store/" />
<!-- 오픈 그래프 (공유) -->
<meta property="og:site_name" content="콕플(Cockple)" />
<meta property="og:title" content="콕플(Cockple) | 배드민턴 모임 플랫폼" />
<meta
property="og:description"
content="배드민턴 모임을 만들고, 추천 모임과 운동을 찾아보는 가장 스마트한 플랫폼"
/>
<meta property="og:type" content="website" />
<meta property="og:url" content="https://www.cockple.store/" />
<!-- 구조화 데이터 (SEO) -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "콕플",
"alternateName": "Cockple",
"url": "https://www.cockple.store/",
"logo": "https://www.cockple.store/icons/app_icon.png"
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"name": "콕플",
"alternateName": "Cockple",
"url": "https://www.cockple.store/"
}
</script>
<!-- 아이콘 -->
<link rel="icon" type="image/png" href="/icons/app_icon.png" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>