-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
114 lines (105 loc) · 3.94 KB
/
index.html
File metadata and controls
114 lines (105 loc) · 3.94 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html lang="en" class="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>QuantumOS - Scientific Protocol</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link href="https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,700;1,400&family=JetBrains+Mono:wght@400;700&family=Inter:wght@300;400;600&display=swap" rel="stylesheet">
<style>
:root {
--bg-color: #0a0a0c;
--paper-grid: rgba(255, 255, 255, 0.03);
--accent-amber: #ffb400;
}
body {
font-family: 'Inter', sans-serif;
background-color: var(--bg-color);
background-image:
linear-gradient(var(--paper-grid) 1px, transparent 1px),
linear-gradient(90deg, var(--paper-grid) 1px, transparent 1px);
background-size: 30px 30px;
color: #d1d5db;
margin: 0;
}
.font-serif { font-family: 'Lora', serif; }
.font-mono { font-family: 'JetBrains Mono', monospace; }
.blueprint-border {
border: 1px solid rgba(255, 255, 255, 0.1);
position: relative;
}
.blueprint-border::before {
content: '';
position: absolute;
top: -2px; left: -2px; width: 8px; height: 8px;
border-top: 2px solid var(--accent-amber);
border-left: 2px solid var(--accent-amber);
}
.blueprint-border::after {
content: '';
position: absolute;
bottom: -2px; right: -2px; width: 8px; height: 8px;
border-bottom: 2px solid var(--accent-amber);
border-right: 2px solid var(--accent-amber);
}
.crt-glow {
text-shadow: 0 0 10px rgba(255, 180, 0, 0.5);
}
.math-decoration {
font-style: italic;
opacity: 0.15;
pointer-events: none;
position: absolute;
font-family: 'Lora', serif;
will-change: transform, opacity;
}
@keyframes math-float-1 {
0%, 100% { transform: translate(0, 0); }
50% { transform: translate(15px, -15px); }
}
@keyframes math-float-2 {
0%, 100% { transform: translate(0, 0); }
50% { transform: translate(-20px, 10px); }
}
@keyframes math-float-3 {
0%, 100% { transform: translate(0, 0); }
50% { transform: translate(10px, 20px); }
}
@keyframes math-pulse {
0%, 100% { opacity: 0.1; }
50% { opacity: 0.25; }
}
.animate-float-1 { animation: math-float-1 15s ease-in-out infinite, math-pulse 8s ease-in-out infinite; }
.animate-float-2 { animation: math-float-2 18s ease-in-out infinite, math-pulse 10s ease-in-out infinite; }
.animate-float-3 { animation: math-float-3 22s ease-in-out infinite, math-pulse 12s ease-in-out infinite; }
</style>
<script>
// Polyfill for process.env
window.process = {
env: {
NODE_ENV: 'development',
API_KEY: '' // Insert API Key here if safe, or rely on environment
}
};
</script>
<!-- Babel for in-browser TSX compilation -->
<script src="https://unpkg.com/@babel/standalone/babel.min.js"></script>
<script type="importmap">
{
"imports": {
"react": "https://esm.sh/react@18.3.1",
"react-dom/client": "https://esm.sh/react-dom@18.3.1/client",
"@google/genai": "https://esm.sh/@google/genai@0.1.1",
"react/": "https://esm.sh/react@^19.2.3/",
"react-dom/": "https://esm.sh/react-dom@^19.2.3/"
}
}
</script>
</head>
<body>
<div id="root"></div>
<!-- Load the main entry point -->
<script type="module" src="./index.tsx"></script>
</body>
</html>