forked from ureca-poject-unear/unear-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (60 loc) ยท 2.7 KB
/
index.html
File metadata and controls
67 lines (60 loc) ยท 2.7 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
<!doctype html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<!-- ํ๋น์ฝ -->
<link rel="icon" type="image/png" href="/meta/favicon.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/meta/favicon-16x16.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/meta/favicon-32x32.png" />
<link
rel="apple-touch-icon"
type="image/png"
sizes="180x180"
href="/meta/apple-touch-icon.png"
/>
<link rel="manifest" href="/meta/site.webmanifest" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- ๊ธฐ๋ณธ ๋ฉํ๋ฐ์ดํฐ -->
<title>U:Near - ์ฃผ๋ณ ํํ์ ๋ฐ๊ฒฌํ์ธ์</title>
<meta
name="description"
content="์ฃผ๋ณ ๋งค์ฅ์ ์ฟ ํฐ๊ณผ ํํ์ ์ฝ๊ฒ ์ฐพ๊ณ ์ฌ์ฉํ ์ ์๋ ์๋น์ค์
๋๋ค."
/>
<meta name="keywords" content="์ฟ ํฐ, ํํ, ๋งค์ฅ, ์ฃผ๋ณ, ํ ์ธ, U:Near" />
<meta name="author" content="U:Near" />
<!-- Open Graph ๋ฉํ๋ฐ์ดํฐ (Facebook, ์นด์นด์คํก ๋ฑ) -->
<meta property="og:title" content="U:Near - ์ฃผ๋ณ ํํ์ ๋ฐ๊ฒฌํ์ธ์" />
<meta
property="og:description"
content="์ฃผ๋ณ ๋งค์ฅ์ ์ฟ ํฐ๊ณผ ํํ์ ์ฝ๊ฒ ์ฐพ๊ณ ์ฌ์ฉํ ์ ์๋ ์๋น์ค์
๋๋ค."
/>
<meta property="og:image" content="https://www.unear.site/og-image.png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:url" content="https://www.unear.site/" />
<meta property="og:type" content="website" />
<meta property="og:site_name" content="U:NEAR" />
<meta property="og:locale" content="ko_KR" />
<!-- Twitter Card ๋ฉํ๋ฐ์ดํฐ -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="U:Near - ์ฃผ๋ณ ํํ์ ๋ฐ๊ฒฌํ์ธ์" />
<meta
name="twitter:description"
content="์ฃผ๋ณ ๋งค์ฅ์ ์ฟ ํฐ๊ณผ ํํ์ ์ฝ๊ฒ ์ฐพ๊ณ ์ฌ์ฉํ ์ ์๋ ์๋น์ค์
๋๋ค."
/>
<meta name="twitter:image" content="https://www.unear.site/og-image.png" />
<!-- ์ถ๊ฐ ๋ฉํ๋ฐ์ดํฐ -->
<meta name="theme-color" content="#ffffff" />
<meta name="msapplication-TileColor" content="#ffffff" />
<meta name="msapplication-config" content="/meta/browserconfig.xml" />
<!-- ๋ชจ๋ฐ์ผ ์ต์ ํ -->
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
<meta name="apple-mobile-web-app-title" content="U:Near" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>