-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
73 lines (71 loc) · 2.47 KB
/
index.html
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
<!doctype html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0 user-scalable=no"
/>
<link
rel="preload"
href="https://cdn.jsdelivr.net/gh/sun-typeface/SUIT/fonts/static/woff2/SUIT.css"
as="font"
type="font/woff2"
crossorigin="anonymous"
/>
<link
rel="preload"
href="https://cdn.jsdelivr.net/gh/projectnoonnu/[email protected]/JalnanOTF00.woff"
as="font"
type="font/woff"
crossorigin="anonymous"
/>
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<!-- Open Graph -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://oceanletter.site/" />
<meta property="og:title" content="내 마음 속 바다" />
<meta
property="og:description"
content="말 못한 고민을 공유하고, 서로 공감하며 위로를 주고받는 서비스"
/>
<meta property="og:image" content="https://i.ibb.co/7SSvJzc/2.png" />
<meta property="og:site_name" content="내 마음 속 바다" />
<meta property="og:locale" content="ko_KR" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<!-- Open Graph - twitter -->
<meta name="twitter:card" content="summary_large_image" />
<meta property="twitter:domain" content="oceanletter.site" />
<meta property="twitter:url" content="https://oceanletter.site/" />
<meta name="twitter:title" content="내 마음 속 바다" />
<meta
name="twitter:description"
content="말 못한 고민을 공유하고, 서로 공감하며 위로를 주고받는 서비스"
/>
<meta name="twitter:image" content="https://i.ibb.co/7SSvJzc/2.png" />
<title>내 마음 속 바다</title>
<meta
name="description"
content="말 못한 고민을 공유하고, 서로 공감하며 위로를 주고받는 서비스"
/>
</head>
<body>
<!-- Google tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-75REEP3X0L"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-75REEP3X0L');
</script>
<!-- End of Google tag (gtag.js) -->
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>