Spaces:
Running
Running
Update index.html
Browse files- index.html +22 -4
index.html
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
<!-- SILENTPATTERN FINAL BUILD: 2025-12-15 | pages: 10 | features: hash-deep-linking, lab-navigator, access-modal, form-validation, chat-console, neural-visualization -->
|
| 2 |
<!DOCTYPE html>
|
| 3 |
<html lang="en">
|
|
@@ -244,8 +259,8 @@
|
|
| 244 |
</div>
|
| 245 |
|
| 246 |
<div class="mt-24 w-64 h-64 relative conscious-element" id="conscious-orb-container">
|
| 247 |
-
<
|
| 248 |
-
|
| 249 |
<circle cx="100" cy="100" r="80" fill="url(#orbGradient)" filter="url(#orbGlow)" />
|
| 250 |
<path d="M100,20 Q120,50 100,80 Q80,50 100,20 Z" fill="rgba(255,255,255,0.1)" />
|
| 251 |
<path d="M100,180 Q80,150 100,120 Q120,150 100,180 Z" fill="rgba(255,255,255,0.1)" />
|
|
@@ -1573,7 +1588,7 @@
|
|
| 1573 |
SUPER BOLD & LARGE HEARTBEAT NEURAL ANIMATION
|
| 1574 |
----------------------------------------------------------------- */
|
| 1575 |
const neuralCanvas = document.getElementById('orb-neural-canvas');
|
| 1576 |
-
const neuralCtx = neuralCanvas.getContext('2d');
|
| 1577 |
|
| 1578 |
function resizeNeuralCanvas() {
|
| 1579 |
if (neuralCanvas && neuralCanvas.parentElement) {
|
|
@@ -1590,6 +1605,7 @@
|
|
| 1590 |
const neuronCount = 22;
|
| 1591 |
const neurons = [];
|
| 1592 |
function setupNeurons() {
|
|
|
|
| 1593 |
neurons.length = 0;
|
| 1594 |
const w = neuralCanvas.width;
|
| 1595 |
const h = neuralCanvas.height;
|
|
@@ -1988,4 +2004,6 @@
|
|
| 1988 |
renderDossier('start');
|
| 1989 |
</script>
|
| 1990 |
</body>
|
| 1991 |
-
</html>
|
|
|
|
|
|
|
|
|
| 1 |
+
Conversation opened. 1 unread message.
|
| 2 |
+
|
| 3 |
+
Skip to content
|
| 4 |
+
Using Gmail with screen readers
|
| 5 |
+
1 of 582
|
| 6 |
+
index
|
| 7 |
+
Inbox
|
| 8 |
+
|
| 9 |
+
Isaac
|
| 10 |
+
Attachments
|
| 11 |
+
2:37 PM (1 minute ago)
|
| 12 |
+
to me
|
| 13 |
+
|
| 14 |
+
One attachment
|
| 15 |
+
• Scanned by Gmail
|
| 16 |
<!-- SILENTPATTERN FINAL BUILD: 2025-12-15 | pages: 10 | features: hash-deep-linking, lab-navigator, access-modal, form-validation, chat-console, neural-visualization -->
|
| 17 |
<!DOCTYPE html>
|
| 18 |
<html lang="en">
|
|
|
|
| 259 |
</div>
|
| 260 |
|
| 261 |
<div class="mt-24 w-64 h-64 relative conscious-element" id="conscious-orb-container">
|
| 262 |
+
<canvas id="orb-neural-canvas" class="absolute top-0 left-0 w-full h-full pointer-events-none" style="opacity: 0.1;"></canvas>
|
| 263 |
+
<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg" class="w-full h-full relative">
|
| 264 |
<circle cx="100" cy="100" r="80" fill="url(#orbGradient)" filter="url(#orbGlow)" />
|
| 265 |
<path d="M100,20 Q120,50 100,80 Q80,50 100,20 Z" fill="rgba(255,255,255,0.1)" />
|
| 266 |
<path d="M100,180 Q80,150 100,120 Q120,150 100,180 Z" fill="rgba(255,255,255,0.1)" />
|
|
|
|
| 1588 |
SUPER BOLD & LARGE HEARTBEAT NEURAL ANIMATION
|
| 1589 |
----------------------------------------------------------------- */
|
| 1590 |
const neuralCanvas = document.getElementById('orb-neural-canvas');
|
| 1591 |
+
const neuralCtx = neuralCanvas ? neuralCanvas.getContext('2d') : null;
|
| 1592 |
|
| 1593 |
function resizeNeuralCanvas() {
|
| 1594 |
if (neuralCanvas && neuralCanvas.parentElement) {
|
|
|
|
| 1605 |
const neuronCount = 22;
|
| 1606 |
const neurons = [];
|
| 1607 |
function setupNeurons() {
|
| 1608 |
+
if (!neuralCanvas) return;
|
| 1609 |
neurons.length = 0;
|
| 1610 |
const w = neuralCanvas.width;
|
| 1611 |
const h = neuralCanvas.height;
|
|
|
|
| 2004 |
renderDossier('start');
|
| 2005 |
</script>
|
| 2006 |
</body>
|
| 2007 |
+
</html>
|
| 2008 |
+
index.html
|
| 2009 |
+
Displaying index.html.
|