-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (60 loc) · 3.01 KB
/
index.html
File metadata and controls
67 lines (60 loc) · 3.01 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
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta name="description" content="Preylife: An evolutionary ecosystem simulation where complex behaviors emerge from simple rules">
<title>Preylife - Evolutionary Ecosystem</title>
<!-- Primary Meta Tags -->
<meta name="title" content="PreyLife - Evolutionary Ecosystem Simulator">
<meta name="description" content="Watch digital creatures evolve in real-time through natural selection, genetic traits, and species adaptation. An interactive simulation of evolutionary dynamics.">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://preylife.com/">
<meta property="og:title" content="PreyLife - Evolutionary Ecosystem Simulator">
<meta property="og:description" content="Watch digital creatures evolve in real-time through natural selection, genetic traits, and species adaptation. An interactive simulation of evolutionary dynamics.">
<meta property="og:image" content="https://preylife.com/social/preview.jpg">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://preylife.com/">
<meta property="twitter:title" content="PreyLife - Evolutionary Ecosystem Simulator">
<meta property="twitter:description" content="Watch digital creatures evolve in real-time through natural selection, genetic traits, and species adaptation. An interactive simulation of evolutionary dynamics.">
<meta property="twitter:image" content="https://preylife.com/social/preview.jpg">
<!-- Favicons -->
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<link rel="manifest" href="/site.webmanifest">
<!-- Google Fonts: Inter -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<!-- Theme color for mobile browsers -->
<meta name="theme-color" content="#111111">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<style>
html, body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
overflow: hidden;
background-color: #000;
}
body {
position: relative; /* For absolute positioning of children */
font-family: 'Inter', system-ui, -apple-system, sans-serif;
}
canvas {
display: block;
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<script type="module" src="/src/main.ts"></script>
</body>
</html>