-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (60 loc) · 2.42 KB
/
Copy pathindex.html
File metadata and controls
65 lines (60 loc) · 2.42 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/icon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="darkreader-lock" />
<title>Really Safe Skiing</title>
<meta name="title" content="Really Safe Skiing" />
<meta
name="description"
content="A low-poly, high-speed downhill skiing game where safety is strictly... optional. Dodge trees, rocks, and gravity itself."
/>
<meta property="og:type" content="website" />
<meta property="og:url" content="https://ski.maarv.dev/" />
<meta property="og:title" content="Really Safe Skiing" />
<meta
property="og:description"
content="A low-poly, high-speed downhill skiing game where safety is strictly... optional. Dodge trees, rocks, and gravity itself."
/>
<meta
property="og:image"
content="https://raw.githubusercontent.com/MarvNC/ReallySafeSkiing/refs/heads/master/assets/media-card.png"
/>
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://ski.maarv.dev/" />
<meta property="twitter:title" content="Really Safe Skiing" />
<meta
property="twitter:description"
content="A low-poly, high-speed downhill skiing game where safety is strictly... optional. Dodge trees, rocks, and gravity itself."
/>
<meta
property="twitter:image"
content="https://raw.githubusercontent.com/MarvNC/ReallySafeSkiing/refs/heads/master/assets/media-card.png"
/>
<meta name="theme-color" content="#ffffff" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Russo+One&display=swap"
rel="stylesheet"
media="print"
onload="this.media='all'"
/>
<noscript>
<link
href="https://fonts.googleapis.com/css2?family=Russo+One&display=swap"
rel="stylesheet"
/>
</noscript>
</head>
<body>
<div id="app"></div>
<div id="ui-layer"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>