-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
46 lines (41 loc) · 2.57 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="en">
<head>
<meta charset="UTF-8" />
<link rel="icon"
href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🚀</text></svg>">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Starship - Romain Herault</title>
<meta name="description" content="Pilot your spaceship through an asteroid field and perform a perfect landing on an uncharted planet. A challenging 3D space game built with Three.js.">
<meta name="keywords" content="space game, landing challenge, spaceship, 3D game, Three.js">
<meta name="author" content="Romain Herault">
<meta name="robots" content="index, follow">
<meta name="theme-color" content="#030304">
<meta property="og:type" content="website">
<meta property="og:url" content="https://spaceship.rherault.dev/">
<meta property="og:title" content="Starship - Romain Herault">
<meta property="og:description" content="Navigate through a treacherous asteroid field and execute a precise landing on a mysterious planet. Test your piloting skills in this immersive space challenge.">
<meta property="og:image" content="/og-image.png">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<meta property="og:site_name" content="Starship - Romain Herault">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:url" content="https://spaceship.rherault.dev/">
<meta name="twitter:title" content="Starship - Romain Herault">
<meta name="twitter:description" content="Navigate through a treacherous asteroid field and execute a precise landing on a mysterious planet. A space game created by @rherault">
<meta name="twitter:image" content="/og-image.png">
<meta name="twitter:creator" content="@Romaixn">
<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="black-translucent">
<meta name="application-name" content="Starship">
<meta name="apple-mobile-web-app-title" content="Starship">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link rel="dns-prefetch" href="https://fonts.gstatic.com">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto+Mono&family=Roboto:wght@300&family=Gothic+A1:wght@400;700">
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>