-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
89 lines (81 loc) · 3.11 KB
/
Copy pathindex.html
File metadata and controls
89 lines (81 loc) · 3.11 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
<!doctype html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<!-- Google tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-77DD365HN5"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-77DD365HN5");
</script>
<!-- SEO 메타 태그 -->
<meta
name="description"
content="나만의 취향에 맞는 영화와 드라마를 발견하세요. 리드미에서 개인화된 추천과 쇼츠 영상으로 새로운 콘텐츠를 만나보세요." />
<meta
name="keywords"
content="영화 추천, 드라마 추천, 영화 리뷰, 드라마 리뷰, 쇼츠, 영상 추천, OTT, 스트리밍" />
<meta name="author" content="리드미" />
<meta name="robots" content="index, follow" />
<!-- Open Graph 태그 (소셜 미디어 공유용) -->
<meta property="og:title" content="리드미" />
<meta
property="og:description"
content="나만의 취향에 맞는 영화와 드라마를 발견하세요. 리드미에서 개인화된 추천과 쇼츠 영상으로 새로운 콘텐츠를 만나보세요." />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://lead-me.site" />
<meta property="og:image" content="https://lead-me.site/og-image.png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta
property="og:image:alt"
content="리드미 - 나만의 취향에 맞는 영화와 드라마 추천" />
<meta property="og:site_name" content="리드미" />
<meta property="og:locale" content="ko_KR" />
<!-- Twitter Card 태그 -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="리드미" />
<meta
name="twitter:description"
content="나만의 취향에 맞는 영화와 드라마를 발견하세요. 리드미에서 개인화된 추천과 쇼츠 영상으로 새로운 콘텐츠를 만나보세요." />
<meta name="twitter:image" content="https://lead-me.site/og-image.png" />
<meta
name="twitter:image:alt"
content="리드미 - 나만의 취향에 맞는 영화와 드라마 추천" />
<!-- 기본 favicon -->
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/icons/favicon-32x32.png" />
<link
rel="icon"
type="image/png"
sizes="16x16"
href="/icons/favicon-16x16.png" />
<!-- 고해상도 디바이스 대응 -->
<link
rel="icon"
type="image/png"
sizes="48x48"
href="/icons/favicon-48x48.png" />
<link
rel="icon"
type="image/png"
sizes="64x64"
href="/icons/favicon-64x64.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="/src/index.css" rel="stylesheet" />
<title>리드미</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>