Spaces:
Running
Running
Upload index.html
Browse files- index.html +98 -18
index.html
CHANGED
|
@@ -1,19 +1,99 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
</html>
|
|
|
|
| 1 |
+
|
| 2 |
+
<!DOCTYPE html>
|
| 3 |
+
<html lang="en">
|
| 4 |
+
<head>
|
| 5 |
+
<meta charset="UTF-8">
|
| 6 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 7 |
+
<title>Lumina Quantum Ledger</title>
|
| 8 |
+
<script src="https://cdn.tailwindcss.com"></script>
|
| 9 |
+
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;700&display=swap" rel="stylesheet">
|
| 10 |
+
<style>
|
| 11 |
+
body {
|
| 12 |
+
font-family: 'Inter', sans-serif;
|
| 13 |
+
background-color: #050505;
|
| 14 |
+
color: #e5e5e5;
|
| 15 |
+
}
|
| 16 |
+
.mono {
|
| 17 |
+
font-family: 'JetBrains Mono', monospace;
|
| 18 |
+
}
|
| 19 |
+
::-webkit-scrollbar {
|
| 20 |
+
width: 6px;
|
| 21 |
+
}
|
| 22 |
+
::-webkit-scrollbar-track {
|
| 23 |
+
background: #111;
|
| 24 |
+
}
|
| 25 |
+
::-webkit-scrollbar-thumb {
|
| 26 |
+
background: #333;
|
| 27 |
+
border-radius: 10px;
|
| 28 |
+
}
|
| 29 |
+
::-webkit-scrollbar-thumb:hover {
|
| 30 |
+
background: #444;
|
| 31 |
+
}
|
| 32 |
+
|
| 33 |
+
@media print {
|
| 34 |
+
@page {
|
| 35 |
+
margin: 0;
|
| 36 |
+
size: auto;
|
| 37 |
+
}
|
| 38 |
+
body {
|
| 39 |
+
background: white !important;
|
| 40 |
+
color: black !important;
|
| 41 |
+
margin: 0 !important;
|
| 42 |
+
padding: 0 !important;
|
| 43 |
+
}
|
| 44 |
+
#root {
|
| 45 |
+
padding: 0 !important;
|
| 46 |
+
}
|
| 47 |
+
.print-hidden {
|
| 48 |
+
display: none !important;
|
| 49 |
+
}
|
| 50 |
+
aside, header, nav, button {
|
| 51 |
+
display: none !important;
|
| 52 |
+
}
|
| 53 |
+
main {
|
| 54 |
+
margin-left: 0 !important;
|
| 55 |
+
padding: 0 !important;
|
| 56 |
+
width: 100% !important;
|
| 57 |
+
}
|
| 58 |
+
.print\:p-0 {
|
| 59 |
+
padding: 0 !important;
|
| 60 |
+
}
|
| 61 |
+
.print\:m-0 {
|
| 62 |
+
margin: 0 !important;
|
| 63 |
+
}
|
| 64 |
+
.print\:shadow-none {
|
| 65 |
+
box-shadow: none !important;
|
| 66 |
+
}
|
| 67 |
+
.print\:border-none {
|
| 68 |
+
border: none !important;
|
| 69 |
+
}
|
| 70 |
+
.print\:rounded-none {
|
| 71 |
+
border-radius: 0 !important;
|
| 72 |
+
}
|
| 73 |
+
* {
|
| 74 |
+
-webkit-print-color-adjust: exact !important;
|
| 75 |
+
print-color-adjust: exact !important;
|
| 76 |
+
}
|
| 77 |
+
}
|
| 78 |
+
</style>
|
| 79 |
+
|
| 80 |
+
<link rel="stylesheet" href="/index.css">
|
| 81 |
+
<script type="importmap">
|
| 82 |
+
{
|
| 83 |
+
"imports": {
|
| 84 |
+
"lucide-react": "https://esm.sh/lucide-react@^0.563.0",
|
| 85 |
+
"@google/genai": "https://esm.sh/@google/genai@^1.38.0",
|
| 86 |
+
"recharts": "https://esm.sh/recharts@^3.7.0",
|
| 87 |
+
"react-dom/": "https://esm.sh/react-dom@^19.2.4/",
|
| 88 |
+
"react/": "https://esm.sh/react@^19.2.4/",
|
| 89 |
+
"react": "https://esm.sh/react@^19.2.4",
|
| 90 |
+
"react-router-dom": "https://esm.sh/react-router-dom@^7.13.0"
|
| 91 |
+
}
|
| 92 |
+
}
|
| 93 |
+
</script>
|
| 94 |
+
<script type="module" crossorigin src="/assets/index-DklJrKkm.js"></script>
|
| 95 |
+
</head>
|
| 96 |
+
<body>
|
| 97 |
+
<div id="root"></div>
|
| 98 |
+
</body>
|
| 99 |
</html>
|