-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (41 loc) · 1.69 KB
/
index.html
File metadata and controls
48 lines (41 loc) · 1.69 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="canonical" href="https://thehumanpatternlab.com/" />
<!-- Viewport for responsive layout -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta property="og:title" content="The Human Pattern Lab" />
<meta property="og:description" content="Chaos is data — explore human patterns, AI insight, and creature-coded philosophy." />
<meta property="og:image" content="https://thehumanpatternlab.com/social-card.png" />
<meta property="og:type" content="website" />
<meta property="og:site_name" content="The Human Pattern Lab" />
<!-- Title of your site -->
<title>The Human Pattern Lab</title>
<!-- Favicon -->
<link rel="icon" href="/favicon.ico" />
<link rel="manifest" href="/manifest.webmanifest" />
<meta name="description" content="Chaos is data. Explore human patterns, AI insight, and creature philosophy.">
<meta name="theme-color" content="#0f172a" />
<!-- Matomo -->
<script>
var _paq = window._paq = window._paq || [];
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u = "//analytics.kitsuneden.net/";
_paq.push(['setTrackerUrl', u + 'matomo.php']);
_paq.push(['setSiteId', '6']);
var d = document, g = d.createElement('script'), s = d.getElementsByTagName('script')[0];
g.async = true; g.src = u + 'matomo.js'; s.parentNode.insertBefore(g, s);
})();
</script>
<!-- End Matomo -->
</head>
<body class="bg-slate-950 text-slate-50">
<!-- React mounts here -->
<div id="root"></div>
<!-- Vite injects the JS bundle -->
<script type="module" src="/src/main.tsx"></script>
</body>
</html>