-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgame.html
48 lines (41 loc) · 2.37 KB
/
game.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
47
48
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Shifty.site - The Layout Shift Game from Request Metrics</title>
<meta name="version" content="%PACKAGE_VERSION%">
<meta name="build_time" content="%BUILD_TIME%">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Preload fonts -->
<link rel="preload" href="/fonts/muli.woff2" as="font" type="font/woff2" crossorigin>
<link rel="preload" href="/fonts/poppins-600.woff2" as="font" type="font/woff2" crossorigin>
<meta name="description"
content="Are you fast enough to grab the Deal of the Day? This online store is slow. Really slow. It shifts around constantly from slow-loading content. How many deals can you get before the time runs out?">
<!-- OpenGraph Meta -->
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@requestmetrics" />
<meta name="twitter:creator" content="@requestmetrics" />
<meta property="og:title" content="Shifty.site - The Layout Shift Game from Request Metrics">
<meta property="og:site_name" content="Shifty.site">
<meta property="og:url" content="https://shifty.site/">
<meta property="og:description"
content="Are you fast enough to grab the Deal of the Day? This online store is slow. Really slow. It shifts around constantly from slow-loading content. How many deals can you get before the time runs out?">
<meta property="og:locale" content="en_US">
<meta property="og:image" content="https://shifty.site/images/share.png">
<meta property="og:type" content="website">
<!-- favicon -->
<link rel="apple-touch-icon" sizes="180x180" href="/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon/favicon-16x16.png">
<link rel="manifest" href="/favicon/site.webmanifest">
<link rel="mask-icon" href="/favicon/safari-pinned-tab.svg" color="#5bbad5">
<link rel="shortcut icon" href="/favicon/favicon.ico">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="msapplication-config" content="/favicon/browserconfig.xml">
<meta name="theme-color" content="#ffffff">
</head>
<body class="game">
<main id="game"></main>
<script type="module" src="/src/Game.tsx"></script>
</body>
</html>