-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (31 loc) · 1.19 KB
/
index.html
File metadata and controls
31 lines (31 loc) · 1.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="Content-Security-Policy"
content="default-src 'self'; script-src 'none'; style-src 'self'; img-src 'self' data:; connect-src 'self' ws://localhost:* wss://localhost:* ws://127.0.0.1:* wss://127.0.0.1:*; object-src 'none'; base-uri 'self';" />
<meta
name="description"
content="microgl homepage presenting a minimal WebGL 2.0 engine with ECS architecture and gl-matrix utilities."
/>
<title>microgl | Home</title>
<link rel="stylesheet" href="/src/styles/theme.css" />
</head>
<body>
<div class="page-shell">
<header>
<h1>microgl</h1>
<p>Minimal and performant 3D engine built for the modern web.</p>
</header>
<main>
<h2>Technical stack</h2>
<p>Powered by WebGL 2.0 rendering, ECS architecture, and gl-matrix math utilities.</p>
<a class="cta-button" href="/gallery.html">Discover the demo gallery</a>
</main>
<footer>
<small>microgl · Lightweight 3D rendering experiments</small>
</footer>
</div>
</body>
</html>