Spaces:
Running
Running
Upload 2 files
Browse files- assets/index-futdUrMp.js +0 -0
- index.html +73 -19
assets/index-futdUrMp.js
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
index.html
CHANGED
|
@@ -1,19 +1,73 @@
|
|
| 1 |
-
<!
|
| 2 |
-
<html>
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8" />
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
| 6 |
+
<title>Moiré & Emergence</title>
|
| 7 |
+
<script src="https://cdn.tailwindcss.com"></script>
|
| 8 |
+
<script>
|
| 9 |
+
tailwind.config = {
|
| 10 |
+
theme: {
|
| 11 |
+
extend: {
|
| 12 |
+
colors: {
|
| 13 |
+
lab: {
|
| 14 |
+
bg: '#0a0a0f',
|
| 15 |
+
surface: '#12121a',
|
| 16 |
+
border: '#1e1e2e',
|
| 17 |
+
text: '#c8c8d4',
|
| 18 |
+
dim: '#5a5a70',
|
| 19 |
+
accent: '#e8c840',
|
| 20 |
+
cyan: '#40c8c8',
|
| 21 |
+
green: '#40c870',
|
| 22 |
+
red: '#c84040',
|
| 23 |
+
purple: '#8868d0',
|
| 24 |
+
}
|
| 25 |
+
},
|
| 26 |
+
fontFamily: {
|
| 27 |
+
mono: ['JetBrains Mono', 'Menlo', 'Monaco', 'Courier New', 'monospace'],
|
| 28 |
+
serif: ['Crimson Pro', 'Georgia', 'serif'],
|
| 29 |
+
}
|
| 30 |
+
}
|
| 31 |
+
}
|
| 32 |
+
}
|
| 33 |
+
</script>
|
| 34 |
+
<style>
|
| 35 |
+
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300;400;600&family=Crimson+Pro:ital,wght@0,300;0,600;1,300&display=swap');
|
| 36 |
+
body {
|
| 37 |
+
background-color: #0a0a0f;
|
| 38 |
+
color: #c8c8d4;
|
| 39 |
+
}
|
| 40 |
+
/* Custom scrollbar for lab aesthetic */
|
| 41 |
+
::-webkit-scrollbar {
|
| 42 |
+
width: 8px;
|
| 43 |
+
height: 8px;
|
| 44 |
+
}
|
| 45 |
+
::-webkit-scrollbar-track {
|
| 46 |
+
background: #0a0a0f;
|
| 47 |
+
}
|
| 48 |
+
::-webkit-scrollbar-thumb {
|
| 49 |
+
background: #1e1e2e;
|
| 50 |
+
border-radius: 4px;
|
| 51 |
+
}
|
| 52 |
+
::-webkit-scrollbar-thumb:hover {
|
| 53 |
+
background: #5a5a70;
|
| 54 |
+
}
|
| 55 |
+
</style>
|
| 56 |
+
|
| 57 |
+
<link rel="stylesheet" href="/index.css">
|
| 58 |
+
<script type="importmap">
|
| 59 |
+
{
|
| 60 |
+
"imports": {
|
| 61 |
+
"react-dom/": "https://esm.sh/react-dom@^19.2.4/",
|
| 62 |
+
"react/": "https://esm.sh/react@^19.2.4/",
|
| 63 |
+
"react": "https://esm.sh/react@^19.2.4",
|
| 64 |
+
"recharts": "https://esm.sh/recharts@^3.7.0"
|
| 65 |
+
}
|
| 66 |
+
}
|
| 67 |
+
</script>
|
| 68 |
+
<script type="module" crossorigin src="/assets/index-futdUrMp.js"></script>
|
| 69 |
+
</head>
|
| 70 |
+
<body>
|
| 71 |
+
<div id="root"></div>
|
| 72 |
+
</body>
|
| 73 |
+
</html>
|