-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
32 lines (29 loc) · 1.52 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
<!-- You should **totally** not look in the console. -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="theme-color" content="#000000">
<link rel="shortcut icon" type="image/ico" href="/src/assets/favicon.ico">
<link rel="stylesheet" type="text/css" href="/src/assets/root-styles.css">
<title>Clique - The Greatest Game of All Time</title>
</head>
<body>
<noscript style="display: flex; flex-direction: column; text-align: center; padding: 2rem; justify-content: center; align-items: center; width: 100vw; height: 100vh">
<h1>Woah there!</h1>
<p>Clique requires JavaScript to operate. If you're running NoScript or a similar JS blocker, please
disable it to continue. Otherwise, just appreciate these pictures of my cats:</p>
<div style="display: flex; gap: 0.5rem">
<img src="./src/assets/IMG_0778.jpg" alt="Mercy" title="Pancake" width="200" />
<img src="./src/assets/IMG_0779.jpg" alt="Teemo" title="Teemo" width="200" />
<img src="./src/assets/IMG_0780.jpg" alt="Pancake" title="Mercy" width="200" />
</div>
</noscript>
<div id="root"></div>
<!-- Scripts -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/lettering.js/0.7.0/jquery.lettering.min.js"></script>
<script src="/src/index.tsx" type="module"></script>
</body>
</html>