forked from Crazy-Cow/Client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (42 loc) · 1.62 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
<!doctype html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta http-equiv="Content-Language" content="ko" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>크리스마스 3D 게임 - x-mas run</title>
<meta
name="description"
content="다른 플레이어들과 경쟁하여 가장 많은 선물을 차지하세요! 신나는 3D 크리스마스 배틀 게임🎁"
/>
<meta
name="keywords"
content="크리스마스 게임, 3D 게임, 파티게임, 멀티플레이어, 선물 게임, 실시간 게임, 크리스마스 파티, 웹게임"
/>
<meta name="theme-color" content="#228B22" />
<!-- Open Graph -->
<meta property="og:title" content="x-mas run" />
<meta
property="og:description"
content="다른 플레이어들과 경쟁하여 가장 많은 선물을 차지하세요! 신나는 3D 크리스마스 배틀 게임🎁"
/>
<meta property="og:image" content="/images/game-preview.webp" />
<meta property="og:type" content="website" />
<meta property="og:site_name" content="x-mas run" />
<meta property="og:url" content="https://x-mas.run" />
<!-- SEO관련 -->
<meta name="robots" content="index, follow" />
<link rel="icon" type="image/svg+xml" href="/images/santaIcon.svg" />
<link rel="preconnect" href="https://res.cloudinary.com" crossorigin />
<link
rel="preload"
href="/fonts/PaytoneOne-Regular.ttf"
as="font"
type="font/ttf"
/>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>