forked from remarkablegames/endless-runner
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (52 loc) · 2.05 KB
/
Copy pathindex.html
File metadata and controls
54 lines (52 loc) · 2.05 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
<!doctype html>
<html lang="en" class="h-full w-full">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/logo.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#000000" />
<meta
name="description"
content="🏃 Endless Runner game where the player has to dodge obstacles and keep moving forward."
/>
<link rel="stylesheet" href="/src/style.css" />
<!--
manifest.webmanifest provides metadata used when your web app is installed on a
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
-->
<link rel="manifest" href="/manifest.webmanifest" />
<title>Endless Runner | remarkablegames</title>
</head>
<body
class="h-full w-full font-['Trebuchet_MS','Avenir_Next',sans-serif] text-slate-50 select-none [background:radial-gradient(circle_at_top,rgba(57,145,214,0.26),transparent_34%),linear-gradient(180deg,#090d13_0%,#020305_100%)]"
>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div
id="spinner"
role="progressbar"
aria-label="Loading"
class="pointer-events-none fixed inset-0 m-auto h-28 w-28 animate-spin rounded-full border-4 border-neutral-300 border-t-blue-500"
></div>
<canvas class="h-full w-full outline-none"></canvas>
<div
class="pointer-events-none fixed inset-0 z-2 grid grid-rows-[auto_1fr]"
>
<div id="ui-overlay" class="contents"></div>
</div>
<script type="module" src="/src/main.ts"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script>
window['ga-disable-%VITE_GOOGLE_ANALYTICS_ID%'] = %DEV%;
window.dataLayer = window.dataLayer || [];
window.gtag = function () {
dataLayer.push(arguments);
};
gtag('js', new Date());
gtag('config', '%VITE_GOOGLE_ANALYTICS_ID%');
</script>
<script
async
src="https://www.googletagmanager.com/gtag/js?id=%VITE_GOOGLE_ANALYTICS_ID%"
></script>
</body>
</html>