-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
76 lines (76 loc) · 1.73 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!doctype html>
<html lang="en-US">
<head>
<title>Pillage First! (Ask Questions Later)</title>
<meta charset="utf-8" />
<link rel="icon" href="/logo.svg" type="image/svg+xml">
<meta
name="viewport"
content="width=device-width, initial-scale=1"
/>
<meta
name="theme-color"
content="#111111"
/>
<meta
name="description"
content="Pillage First! (Ask Questions Later) is a single-player, real-time, browser-based strategy game inspired by Travian. Manage resources to construct buildings, train units, and wage war against your enemies. Remember: pillage first, ask questions later! ⚔️🔥"
/>
<link
rel="apple-touch-icon"
href="/logo-192.png"
/>
<link
rel="manifest"
href="/manifest.webmanifest"
/>
<meta
name="twitter:card"
content="summary"
/>
<meta
property="og:url"
content=""
/>
<meta
property="og:type"
content="website"
/>
<!-- TODO: Add images -->
<meta
name="twitter:image"
content="/images/"
/>
<meta
property="og:image"
content="/images/"
/>
<meta
property="og:image:secure_url"
content="/images/"
/>
<meta
property="og:image:type"
content="image/png"
/>
<meta
property="og:image:width"
content="1200"
/>
<meta
property="og:image:height"
content="630"
/>
<meta
property="og:image:alt"
content="Pillage First! (Ask Questions Later) is a single-player, real-time, browser-based strategy game inspired by Travian. Manage resources to construct buildings, train units, and wage war against your enemies. Remember: pillage first, ask questions later! ⚔️🔥"
/>
</head>
<body>
<div id="root"></div>
<script
type="module"
src="app/index.tsx"
></script>
</body>
</html>