admin08077 commited on
Commit
1bb5442
·
verified ·
1 Parent(s): 8f4da71

Upload index.html

Browse files
Files changed (1) hide show
  1. index.html +120 -0
index.html ADDED
@@ -0,0 +1,120 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Lumina Quantum Ledger</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <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">
9
+ <style>
10
+ body {
11
+ font-family: 'Inter', sans-serif;
12
+ background-color: #050505;
13
+ color: #e5e5e5;
14
+ }
15
+ .mono {
16
+ font-family: 'JetBrains Mono', monospace;
17
+ }
18
+ ::-webkit-scrollbar {
19
+ width: 6px;
20
+ }
21
+ ::-webkit-scrollbar-track {
22
+ background: #111;
23
+ }
24
+ ::-webkit-scrollbar-thumb {
25
+ background: #333;
26
+ border-radius: 10px;
27
+ }
28
+ ::-webkit-scrollbar-thumb:hover {
29
+ background: #444;
30
+ }
31
+
32
+ @keyframes matrix-scan {
33
+ 0% { top: -10%; }
34
+ 100% { top: 110%; }
35
+ }
36
+
37
+ .matrix-line {
38
+ position: absolute;
39
+ width: 100%;
40
+ height: 2px;
41
+ background: linear-gradient(90deg, transparent, #f43f5e, transparent);
42
+ opacity: 0.3;
43
+ animation: matrix-scan 3s linear infinite;
44
+ }
45
+
46
+ @media print {
47
+ @page {
48
+ margin: 0;
49
+ size: auto;
50
+ }
51
+ body {
52
+ background: white !important;
53
+ color: black !important;
54
+ margin: 0 !important;
55
+ padding: 0 !important;
56
+ }
57
+ #root {
58
+ padding: 0 !important;
59
+ }
60
+ .print-hidden {
61
+ display: none !important;
62
+ }
63
+ aside, header, nav, button {
64
+ display: none !important;
65
+ }
66
+ main {
67
+ margin-left: 0 !important;
68
+ padding: 0 !important;
69
+ width: 100% !important;
70
+ }
71
+ .print\:p-0 {
72
+ padding: 0 !important;
73
+ }
74
+ .print\:m-0 {
75
+ margin: 0 !important;
76
+ }
77
+ .print\:shadow-none {
78
+ box-shadow: none !important;
79
+ }
80
+ .print\:border-none {
81
+ border: none !important;
82
+ }
83
+ .print\:rounded-none {
84
+ border-radius: 0 !important;
85
+ }
86
+ * {
87
+ -webkit-print-color-adjust: exact !important;
88
+ print-color-adjust: exact !important;
89
+ }
90
+ }
91
+ </style>
92
+
93
+ <link rel="stylesheet" href="/index.css">
94
+ <script type="importmap">
95
+ {
96
+ "imports": {
97
+ "sqlite3": "https://esm.sh/sqlite3@^5.1.7",
98
+ "lucide-react": "https://esm.sh/lucide-react@^0.563.0",
99
+ "react-dom/": "https://esm.sh/react-dom@^19.2.4/",
100
+ "react-router-dom": "https://esm.sh/react-router-dom@^7.13.0",
101
+ "@google/genai": "https://esm.sh/@google/genai@^1.41.0",
102
+ "@vitejs/plugin-react": "https://esm.sh/@vitejs/plugin-react@^5.1.4",
103
+ "react/": "https://esm.sh/react@^19.2.4/",
104
+ "react": "https://esm.sh/react@^19.2.4",
105
+ "path": "https://esm.sh/path@^0.12.7",
106
+ "vite": "https://esm.sh/vite@^7.3.1",
107
+ "recharts": "https://esm.sh/recharts@^3.7.0",
108
+ "bcryptjs": "https://esm.sh/bcryptjs@^3.0.3",
109
+ "url": "https://esm.sh/url@^0.11.4",
110
+ "express": "https://esm.sh/express@^5.2.1",
111
+ "cors": "https://esm.sh/cors@^2.8.6"
112
+ }
113
+ }
114
+ </script>
115
+ <script type="module" crossorigin src="/assets/index-UW1pcnB_.js"></script>
116
+ </head>
117
+ <body>
118
+ <div id="root"></div>
119
+ </body>
120
+ </html>