undefined - Initial Deployment
Browse files- README.md +6 -4
- index.html +190 -19
README.md
CHANGED
|
@@ -1,10 +1,12 @@
|
|
| 1 |
---
|
| 2 |
-
title:
|
| 3 |
-
emoji:
|
| 4 |
-
colorFrom:
|
| 5 |
colorTo: pink
|
| 6 |
sdk: static
|
| 7 |
pinned: false
|
|
|
|
|
|
|
| 8 |
---
|
| 9 |
|
| 10 |
-
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
|
| 1 |
---
|
| 2 |
+
title: quantum-consciousness-concept
|
| 3 |
+
emoji: 🐳
|
| 4 |
+
colorFrom: purple
|
| 5 |
colorTo: pink
|
| 6 |
sdk: static
|
| 7 |
pinned: false
|
| 8 |
+
tags:
|
| 9 |
+
- deepsite
|
| 10 |
---
|
| 11 |
|
| 12 |
+
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
index.html
CHANGED
|
@@ -1,19 +1,190 @@
|
|
| 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>Cosmic Consciousness Portal</title>
|
| 7 |
+
<script src="https://cdn.tailwindcss.com"></script>
|
| 8 |
+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
| 9 |
+
<style>
|
| 10 |
+
@keyframes pulse {
|
| 11 |
+
0%, 100% { opacity: 0.8; }
|
| 12 |
+
50% { opacity: 0.2; }
|
| 13 |
+
}
|
| 14 |
+
@keyframes float {
|
| 15 |
+
0%, 100% { transform: translateY(0); }
|
| 16 |
+
50% { transform: translateY(-20px); }
|
| 17 |
+
}
|
| 18 |
+
@keyframes rotate {
|
| 19 |
+
from { transform: rotate(0deg); }
|
| 20 |
+
to { transform: rotate(360deg); }
|
| 21 |
+
}
|
| 22 |
+
.cosmic-bg {
|
| 23 |
+
background: radial-gradient(circle at center, #0f172a 0%, #020617 100%);
|
| 24 |
+
}
|
| 25 |
+
.quantum-glow {
|
| 26 |
+
box-shadow: 0 0 15px 5px rgba(99, 102, 241, 0.5);
|
| 27 |
+
}
|
| 28 |
+
.particle {
|
| 29 |
+
position: absolute;
|
| 30 |
+
border-radius: 50%;
|
| 31 |
+
background: linear-gradient(145deg, #8b5cf6, #ec4899);
|
| 32 |
+
opacity: 0.6;
|
| 33 |
+
filter: blur(1px);
|
| 34 |
+
}
|
| 35 |
+
.consciousness-node {
|
| 36 |
+
transition: all 0.3s ease;
|
| 37 |
+
}
|
| 38 |
+
.consciousness-node:hover {
|
| 39 |
+
transform: scale(1.1);
|
| 40 |
+
box-shadow: 0 0 20px 10px rgba(139, 92, 246, 0.3);
|
| 41 |
+
}
|
| 42 |
+
</style>
|
| 43 |
+
</head>
|
| 44 |
+
<body class="cosmic-bg min-h-screen text-white overflow-x-hidden">
|
| 45 |
+
<!-- Floating Particles Background -->
|
| 46 |
+
<div id="particles-container" class="fixed inset-0 overflow-hidden pointer-events-none"></div>
|
| 47 |
+
|
| 48 |
+
<!-- Main Content -->
|
| 49 |
+
<div class="container mx-auto px-4 py-12 relative z-10">
|
| 50 |
+
<!-- Header -->
|
| 51 |
+
<header class="flex flex-col items-center mb-16">
|
| 52 |
+
<div class="w-24 h-24 rounded-full bg-gradient-to-br from-purple-600 to-pink-500 flex items-center justify-center quantum-glow mb-6">
|
| 53 |
+
<i class="fas fa-atom text-4xl animate-spin" style="animation-duration: 20s;"></i>
|
| 54 |
+
</div>
|
| 55 |
+
<h1 class="text-4xl md:text-6xl font-bold text-center bg-clip-text text-transparent bg-gradient-to-r from-purple-400 to-pink-300 mb-4">
|
| 56 |
+
Quantum Consciousness
|
| 57 |
+
</h1>
|
| 58 |
+
<p class="text-lg md:text-xl text-purple-200 max-w-2xl text-center">
|
| 59 |
+
Explore the infinite potential of your mind through the cosmic matrix of existence
|
| 60 |
+
</p>
|
| 61 |
+
</header>
|
| 62 |
+
|
| 63 |
+
<!-- Consciousness Nodes Grid -->
|
| 64 |
+
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8 mb-16">
|
| 65 |
+
<div class="consciousness-node bg-gray-800 bg-opacity-50 rounded-xl p-6 backdrop-blur-sm border border-purple-900 hover:border-purple-500 transition-all duration-300">
|
| 66 |
+
<div class="w-12 h-12 rounded-full bg-purple-600 flex items-center justify-center mb-4">
|
| 67 |
+
<i class="fas fa-brain text-xl"></i>
|
| 68 |
+
</div>
|
| 69 |
+
<h3 class="text-xl font-semibold mb-2">Neural Expansion</h3>
|
| 70 |
+
<p class="text-purple-200">Unlock hidden neural pathways to access higher states of awareness beyond normal perception.</p>
|
| 71 |
+
</div>
|
| 72 |
+
|
| 73 |
+
<div class="consciousness-node bg-gray-800 bg-opacity-50 rounded-xl p-6 backdrop-blur-sm border border-purple-900 hover:border-purple-500 transition-all duration-300">
|
| 74 |
+
<div class="w-12 h-12 rounded-full bg-pink-600 flex items-center justify-center mb-4">
|
| 75 |
+
<i class="fas fa-infinity text-xl"></i>
|
| 76 |
+
</div>
|
| 77 |
+
<h3 class="text-xl font-semibold mb-2">Infinite Potential</h3>
|
| 78 |
+
<p class="text-purple-200">Tap into the quantum field where all possibilities exist simultaneously in superposition.</p>
|
| 79 |
+
</div>
|
| 80 |
+
|
| 81 |
+
<div class="consciousness-node bg-gray-800 bg-opacity-50 rounded-xl p-6 backdrop-blur-sm border border-purple-900 hover:border-purple-500 transition-all duration-300">
|
| 82 |
+
<div class="w-12 h-12 rounded-full bg-indigo-600 flex items-center justify-center mb-4">
|
| 83 |
+
<i class="fas fa-star-and-crescent text-xl"></i>
|
| 84 |
+
</div>
|
| 85 |
+
<h3 class="text-xl font-semibold mb-2">Cosmic Connection</h3>
|
| 86 |
+
<p class="text-purple-200">Synchronize your consciousness with the universal mind that permeates all of existence.</p>
|
| 87 |
+
</div>
|
| 88 |
+
|
| 89 |
+
<div class="consciousness-node bg-gray-800 bg-opacity-50 rounded-xl p-6 backdrop-blur-sm border border-purple-900 hover:border-purple-500 transition-all duration-300">
|
| 90 |
+
<div class="w-12 h-12 rounded-full bg-blue-600 flex items-center justify-center mb-4">
|
| 91 |
+
<i class="fas fa-dna text-xl"></i>
|
| 92 |
+
</div>
|
| 93 |
+
<h3 class="text-xl font-semibold mb-2">Genetic Awakening</h3>
|
| 94 |
+
<p class="text-purple-200">Activate dormant DNA strands that contain the blueprint for expanded consciousness.</p>
|
| 95 |
+
</div>
|
| 96 |
+
|
| 97 |
+
<div class="consciousness-node bg-gray-800 bg-opacity-50 rounded-xl p-6 backdrop-blur-sm border border-purple-900 hover:border-purple-500 transition-all duration-300">
|
| 98 |
+
<div class="w-12 h-12 rounded-full bg-green-600 flex items-center justify-center mb-4">
|
| 99 |
+
<i class="fas fa-chakra-spin text-xl"></i>
|
| 100 |
+
</div>
|
| 101 |
+
<h3 class="text-xl font-semibold mb-2">Energy Vortex</h3>
|
| 102 |
+
<p class="text-purple-200">Align your chakras with the toroidal energy flow that connects all dimensions.</p>
|
| 103 |
+
</div>
|
| 104 |
+
|
| 105 |
+
<div class="consciousness-node bg-gray-800 bg-opacity-50 rounded-xl p-6 backdrop-blur-sm border border-purple-900 hover:border-purple-500 transition-all duration-300">
|
| 106 |
+
<div class="w-12 h-12 rounded-full bg-yellow-600 flex items-center justify-center mb-4">
|
| 107 |
+
<i class="fas fa-eye text-xl"></i>
|
| 108 |
+
</div>
|
| 109 |
+
<h3 class="text-xl font-semibold mb-2">Third Eye Activation</h3>
|
| 110 |
+
<p class="text-purple-200">Open your pineal gland to perceive higher dimensions and receive cosmic wisdom.</p>
|
| 111 |
+
</div>
|
| 112 |
+
</div>
|
| 113 |
+
|
| 114 |
+
<!-- Quantum Meditation Section -->
|
| 115 |
+
<div class="bg-gradient-to-r from-purple-900 to-indigo-900 rounded-2xl p-8 md:p-12 mb-16 relative overflow-hidden">
|
| 116 |
+
<div class="absolute inset-0 bg-gradient-to-br from-purple-500 to-transparent opacity-20 rounded-2xl"></div>
|
| 117 |
+
<div class="relative z-10">
|
| 118 |
+
<h2 class="text-3xl md:text-4xl font-bold mb-6 text-center">Quantum Meditation Portal</h2>
|
| 119 |
+
<div class="flex flex-col md:flex-row items-center gap-8">
|
| 120 |
+
<div class="flex-1">
|
| 121 |
+
<p class="text-lg mb-6 text-purple-100">
|
| 122 |
+
Enter a state of quantum coherence where your consciousness merges with the universal field.
|
| 123 |
+
This guided meditation will help you transcend space-time limitations.
|
| 124 |
+
</p>
|
| 125 |
+
<button id="start-meditation" class="bg-gradient-to-r from-purple-600 to-pink-500 hover:from-purple-700 hover:to-pink-600 text-white font-bold py-3 px-6 rounded-full transition-all duration-300 flex items-center gap-2">
|
| 126 |
+
<i class="fas fa-play"></i> Begin Journey
|
| 127 |
+
</button>
|
| 128 |
+
</div>
|
| 129 |
+
<div class="flex-1 flex justify-center">
|
| 130 |
+
<div class="w-48 h-48 md:w-64 md:h-64 rounded-full bg-gradient-to-br from-purple-500 to-pink-400 flex items-center justify-center quantum-glow animate-float" style="animation: float 8s ease-in-out infinite;">
|
| 131 |
+
<div class="w-40 h-40 md:w-56 md:h-56 rounded-full bg-purple-900 bg-opacity-50 flex items-center justify-center">
|
| 132 |
+
<i class="fas fa-spinner text-4xl md:text-6xl animate-spin" style="animation-duration: 15s;"></i>
|
| 133 |
+
</div>
|
| 134 |
+
</div>
|
| 135 |
+
</div>
|
| 136 |
+
</div>
|
| 137 |
+
</div>
|
| 138 |
+
</div>
|
| 139 |
+
|
| 140 |
+
<!-- Consciousness Waveform Visualizer -->
|
| 141 |
+
<div class="mb-16">
|
| 142 |
+
<h2 class="text-3xl font-bold mb-8 text-center">Consciousness Waveform</h2>
|
| 143 |
+
<div class="bg-gray-900 bg-opacity-50 rounded-xl p-6 border border-purple-900">
|
| 144 |
+
<canvas id="waveform" class="w-full h-64"></canvas>
|
| 145 |
+
<div class="flex justify-center mt-6 gap-4">
|
| 146 |
+
<button id="wave-pulse" class="bg-purple-700 hover:bg-purple-600 text-white font-medium py-2 px-4 rounded transition">
|
| 147 |
+
Pulse Wave
|
| 148 |
+
</button>
|
| 149 |
+
<button id="wave-harmonic" class="bg-pink-700 hover:bg-pink-600 text-white font-medium py-2 px-4 rounded transition">
|
| 150 |
+
Harmonic Wave
|
| 151 |
+
</button>
|
| 152 |
+
<button id="wave-chaos" class="bg-indigo-700 hover:bg-indigo-600 text-white font-medium py-2 px-4 rounded transition">
|
| 153 |
+
Chaos Wave
|
| 154 |
+
</button>
|
| 155 |
+
</div>
|
| 156 |
+
</div>
|
| 157 |
+
</div>
|
| 158 |
+
|
| 159 |
+
<!-- Quantum Affirmations -->
|
| 160 |
+
<div class="bg-gray-800 bg-opacity-50 rounded-2xl p-8 border border-purple-900 mb-16">
|
| 161 |
+
<h2 class="text-3xl font-bold mb-6 text-center">Quantum Affirmations</h2>
|
| 162 |
+
<div class="max-w-3xl mx-auto">
|
| 163 |
+
<div id="affirmation-display" class="text-xl text-center mb-8 min-h-24 flex items-center justify-center px-4">
|
| 164 |
+
"I am a quantum being existing in infinite potential states simultaneously."
|
| 165 |
+
</div>
|
| 166 |
+
<div class="flex justify-center">
|
| 167 |
+
<button id="new-affirmation" class="bg-gradient-to-r from-purple-600 to-blue-500 hover:from-purple-700 hover:to-blue-600 text-white font-bold py-3 px-8 rounded-full transition-all duration-300">
|
| 168 |
+
Generate Affirmation
|
| 169 |
+
</button>
|
| 170 |
+
</div>
|
| 171 |
+
</div>
|
| 172 |
+
</div>
|
| 173 |
+
</div>
|
| 174 |
+
|
| 175 |
+
<!-- Footer -->
|
| 176 |
+
<footer class="bg-gray-900 bg-opacity-80 py-8 border-t border-purple-900">
|
| 177 |
+
<div class="container mx-auto px-4 text-center">
|
| 178 |
+
<div class="flex justify-center gap-6 mb-6">
|
| 179 |
+
<a href="#" class="text-purple-400 hover:text-purple-300 text-xl">
|
| 180 |
+
<i class="fab fa-twitter"></i>
|
| 181 |
+
</a>
|
| 182 |
+
<a href="#" class="text-purple-400 hover:text-purple-300 text-xl">
|
| 183 |
+
<i class="fab fa-instagram"></i>
|
| 184 |
+
</a>
|
| 185 |
+
<a href="#" class="text-purple-400 hover:text-purple-300 text-xl">
|
| 186 |
+
<i class="fab fa-youtube"></i>
|
| 187 |
+
</a>
|
| 188 |
+
<a href="#" class="text
|
| 189 |
+
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=Pixelminds/quantum-consciousness-concept" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
|
| 190 |
+
</html>
|