-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
60 lines (56 loc) · 2.92 KB
/
index.html
File metadata and controls
60 lines (56 loc) · 2.92 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
<!doctype html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
<meta name="theme-color" content="#0f172a" />
<!-- 기본 SEO (크롤러·검색 스니펫) -->
<title>어디더라 | 흩어진 링크를 하나의 데이트로</title>
<meta
name="description"
content="인스타 릴스·SNS에서 본 맛집과 장소를 저장하고, 지도에서 한눈에 모아 나만의 데이트 코스를 만드세요. 링크로 흩어진 정보를 한 코스로 정리합니다."
/>
<meta name="robots" content="index, follow" />
<link rel="canonical" href="https://udidura.vercel.app/" />
<!-- Open Graph (Facebook, 카카오 등) — 절대 URL 필수 -->
<meta property="og:type" content="website" />
<meta property="og:site_name" content="어디더라" />
<meta property="og:locale" content="ko_KR" />
<meta property="og:url" content="https://udidura.vercel.app/" />
<meta property="og:title" content="어디더라 | 흩어진 링크를 하나의 데이트로" />
<meta
property="og:description"
content="인스타 릴스·SNS에서 본 맛집과 장소를 저장하고, 지도에서 한눈에 모아 나만의 데이트 코스를 만드세요. 링크로 흩어진 정보를 한 코스로 정리합니다."
/>
<meta property="og:image" content="https://udidura.vercel.app/og-udidura.png" />
<meta property="og:image:secure_url" content="https://udidura.vercel.app/og-udidura.png" />
<meta property="og:image:type" content="image/png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta
property="og:image:alt"
content="어디더라 — 릴스로 본 장소를 저장하고 데이트 코스로 만드는 서비스"
/>
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="어디더라 | 흩어진 링크를 하나의 데이트로" />
<meta
name="twitter:description"
content="인스타 릴스·SNS에서 본 맛집과 장소를 저장하고, 지도에서 한눈에 모아 나만의 데이트 코스를 만드세요."
/>
<meta name="twitter:image" content="https://udidura.vercel.app/og-udidura.png" />
<meta
name="twitter:image:alt"
content="어디더라 — 릴스로 본 장소를 저장하고 데이트 코스로 만드는 서비스"
/>
<link rel="icon" href="/favicon.svg" type="image/svg+xml" />
<link rel="icon" href="/favicon-96x96.png" type="image/png" sizes="96x96" />
<link rel="icon" href="/favicon.ico" sizes="any" />
<link rel="apple-touch-icon" href="/assets/apple-touch-icon.png" />
<link rel="manifest" href="/assets/site.webmanifest" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>