-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
77 lines (68 loc) · 2.74 KB
/
Copy pathindex.html
File metadata and controls
77 lines (68 loc) · 2.74 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
68
69
70
71
72
73
74
75
76
77
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<!-- Responsive / Mobile -->
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"
/>
<!-- Primary Meta -->
<title>Morphix — Real-Time AI Motion Capture for VRM Avatars</title>
<meta
name="description"
content="Morphix is a browser-based AI motion capture system that maps real-time webcam input to VRM avatars using MediaPipe, Kalidokit, and Three.js."
/>
<!-- Theme -->
<meta name="theme-color" content="#020617" />
<meta name="background-color" content="#020617" />
<link rel="manifest" href="/manifest.json" />
<!-- Orientation / Fullscreen -->
<meta name="screen-orientation" content="landscape" />
<meta name="x5-orientation" content="landscape" />
<meta name="x5-fullscreen" content="true" />
<meta name="full-screen" content="yes" />
<!-- Apple PWA -->
<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="Morphix" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<!-- Icons -->
<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" />
<!-- SEO -->
<meta name="robots" content="index, follow" />
<meta
name="keywords"
content="Morphix, VRM, Motion Capture, MediaPipe Holistic, Kalidokit, Three.js, React Three Fiber, WebGL, VTuber, Real-time Animation, Browser AI"
/>
<!-- Open Graph (Social Preview) -->
<meta property="og:type" content="website" />
<meta property="og:title" content="Morphix — Real-Time AI Motion Capture" />
<meta
property="og:description"
content="Control VRM avatars in real time using your webcam. Powered by MediaPipe, Kalidokit, and Three.js."
/>
<meta property="og:url" content="." />
<meta property="og:image" content="/preview/morphix-preview.png" />
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image" />
<meta
name="twitter:title"
content="Morphix — AI Motion Capture for VRM Avatars"
/>
<meta
name="twitter:description"
content="Real-time browser-based motion capture for VRM avatars using AI and WebGL."
/>
<meta name="twitter:image" content="/preview/morphix-preview.png" />
</head>
<body>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>