-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
60 lines (51 loc) · 2.22 KB
/
Copy pathindex.html
File metadata and controls
60 lines (51 loc) · 2.22 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"
/>
<title>Perspecta — 3D Character Controller</title>
<meta
name="description"
content="Perspecta is a third-person 3D character controller playground built with React, Three.js, and real-time physics."
/>
<meta name="theme-color" content="#ececec" />
<meta name="background-color" content="#ececec" />
<link rel="manifest" href="/manifest.json" />
<meta name="screen-orientation" content="landscape" />
<meta name="x5-orientation" content="landscape" />
<meta name="x5-fullscreen" content="true" />
<meta name="full-screen" content="yes" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="apple-mobile-web-app-title" content="Perspecta" />
<link rel="apple-touch-icon" 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="shortcut icon" href="/favicon.ico" />
<meta name="robots" content="index, follow" />
<meta
name="keywords"
content="Three.js, React Three Fiber, WebGL, 3D, Game Dev, Character Controller, Rapier Physics"
/>
<meta property="og:type" content="website" />
<meta property="og:title" content="Perspecta — 3D Character Controller" />
<meta
property="og:description"
content="A third-person 3D character controller playground built with React, Three.js, and physics."
/>
<meta property="og:url" content="/" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Perspecta — 3D Character Controller" />
<meta
name="twitter:description"
content="A third-person 3D character controller playground built with React, Three.js, and physics."
/>
</head>
<body>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>