-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (63 loc) · 2.4 KB
/
Copy pathindex.html
File metadata and controls
67 lines (63 loc) · 2.4 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"
/>
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<title>Fractr — 3D Fractal Explorer powered by WebGPU</title>
<meta
name="description"
content="Explore 19 stunning 3D fractals in real-time with WebGPU. Fly through Mandelbulb, Menger Sponge, Gyroid, and more with FPS-style controls, 13 color modes, 16 render modes, and progressive accumulation."
/>
<meta
name="keywords"
content="fractal, 3D, WebGPU, ray marching, mandelbulb, mandelbox, menger sponge, gyroid, fractal explorer, real-time, WGSL, shader"
/>
<meta name="author" content="Christopher Quadflieg" />
<meta name="theme-color" content="#0a0a0a" />
<!-- Open Graph -->
<meta property="og:type" content="website" />
<meta property="og:title" content="Fractr — 3D Fractal Explorer" />
<meta
property="og:description"
content="Explore 19 stunning 3D fractals in real-time with WebGPU. Fly through infinite mathematical structures with FPS-style controls."
/>
<meta property="og:url" content="https://shinigami92.github.io/Fractr/" />
<meta property="og:site_name" content="Fractr" />
<meta
property="og:image"
content="https://shinigami92.github.io/Fractr/screenshots/mandelbulb.webp"
/>
<meta property="og:image:width" content="1920" />
<meta property="og:image:height" content="1080" />
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Fractr — 3D Fractal Explorer" />
<meta
name="twitter:description"
content="Explore 19 stunning 3D fractals in real-time with WebGPU. Fly through infinite mathematical structures with FPS-style controls."
/>
<meta
name="twitter:image"
content="https://shinigami92.github.io/Fractr/screenshots/mandelbulb.webp"
/>
<link rel="canonical" href="https://shinigami92.github.io/Fractr/" />
<style>
/* Prevent white flash on load */
html,
body {
margin: 0;
padding: 0;
background: #0a0a0a;
overflow: hidden;
}
</style>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>