Neomyst commited on
Commit
fb26bef
·
verified ·
1 Parent(s): bf3bd6e

Add 2 files

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +423 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Microbiome Explorer
3
- emoji: 🐠
4
- colorFrom: yellow
5
- colorTo: yellow
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: microbiome-explorer
3
+ emoji: 🐳
4
+ colorFrom: purple
5
+ colorTo: purple
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,423 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Microbiome Explorer | Award-Winning Holistic Search Engine</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
+ .microbiome-gradient {
11
+ background: linear-gradient(135deg, #00c6fb 0%, #005bea 100%);
12
+ }
13
+ .cell-pattern {
14
+ background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
15
+ background-size: 20px 20px;
16
+ }
17
+ .glow-effect {
18
+ box-shadow: 0 0 15px rgba(0, 198, 251, 0.5);
19
+ }
20
+ .dna-animation {
21
+ animation: dnaFloat 8s ease-in-out infinite;
22
+ }
23
+ @keyframes dnaFloat {
24
+ 0%, 100% { transform: translateY(0) rotate(0deg); }
25
+ 25% { transform: translateY(-10px) rotate(2deg); }
26
+ 50% { transform: translateY(0) rotate(0deg); }
27
+ 75% { transform: translateY(10px) rotate(-2deg); }
28
+ }
29
+ .search-focus {
30
+ transition: all 0.3s ease;
31
+ }
32
+ .search-focus:focus {
33
+ transform: scale(1.02);
34
+ box-shadow: 0 5px 15px rgba(0, 91, 234, 0.2);
35
+ }
36
+ .microbe-hover {
37
+ transition: all 0.3s ease;
38
+ }
39
+ .microbe-hover:hover {
40
+ transform: scale(1.1) rotate(5deg);
41
+ }
42
+ .typewriter {
43
+ overflow: hidden;
44
+ border-right: .15em solid #00c6fb;
45
+ white-space: nowrap;
46
+ animation: typing 3.5s steps(40, end), blink-caret .75s step-end infinite;
47
+ }
48
+ @keyframes typing {
49
+ from { width: 0 }
50
+ to { width: 100% }
51
+ }
52
+ @keyframes blink-caret {
53
+ from, to { border-color: transparent }
54
+ 50% { border-color: #00c6fb; }
55
+ }
56
+ </style>
57
+ </head>
58
+ <body class="bg-gray-50 font-sans">
59
+ <!-- Award Badge -->
60
+ <div class="absolute top-4 right-4 z-50">
61
+ <div class="relative">
62
+ <div class="bg-yellow-400 text-yellow-900 px-4 py-2 rounded-full font-bold text-sm transform rotate-12 shadow-lg">
63
+ <i class="fas fa-trophy mr-1"></i> 2024 BioTech Innovation Award
64
+ </div>
65
+ <div class="absolute -bottom-1 left-1/2 transform -translate-x-1/2 w-0 h-0 border-l-8 border-r-8 border-t-8 border-l-transparent border-r-transparent border-t-yellow-400"></div>
66
+ </div>
67
+ </div>
68
+
69
+ <!-- Hero Section -->
70
+ <header class="microbiome-gradient text-white pt-24 pb-32 relative overflow-hidden">
71
+ <div class="cell-pattern absolute inset-0 opacity-10"></div>
72
+ <div class="container mx-auto px-6 relative z-10">
73
+ <div class="flex flex-col lg:flex-row items-center">
74
+ <div class="lg:w-1/2 mb-12 lg:mb-0">
75
+ <div class="flex items-center mb-4">
76
+ <div class="bg-white bg-opacity-20 px-3 py-1 rounded-full text-sm font-medium mr-3">
77
+ Game-Changer
78
+ </div>
79
+ <div class="text-sm opacity-90">Patent Pending Technology</div>
80
+ </div>
81
+ <h1 class="text-4xl md:text-5xl font-bold leading-tight mb-6">
82
+ Explore the <span class="typewriter inline-block">Human Microbiome</span>
83
+ </h1>
84
+ <p class="text-xl opacity-90 mb-8 max-w-lg">
85
+ The world's first holistic search engine for microbiome research, connecting symptoms, treatments, and microbial relationships.
86
+ </p>
87
+ <div class="flex flex-col sm:flex-row space-y-3 sm:space-y-0 sm:space-x-4">
88
+ <button class="bg-white text-blue-700 px-6 py-3 rounded-full font-semibold hover:bg-opacity-90 transition-all transform hover:scale-105 flex items-center justify-center">
89
+ <i class="fas fa-flask mr-2"></i> Start Research
90
+ </button>
91
+ <button class="border-2 border-white border-opacity-50 text-white px-6 py-3 rounded-full font-semibold hover:bg-white hover:bg-opacity-10 transition-all transform hover:scale-105 flex items-center justify-center">
92
+ <i class="fas fa-play-circle mr-2"></i> Watch Demo
93
+ </button>
94
+ </div>
95
+ </div>
96
+ <div class="lg:w-1/2 flex justify-center">
97
+ <div class="relative">
98
+ <img src="https://www.svgrepo.com/show/530537/dna.svg" alt="DNA Strand" class="w-64 h-64 dna-animation">
99
+ <div class="absolute -top-10 -left-10">
100
+ <div class="bg-white bg-opacity-20 rounded-full w-32 h-32 flex items-center justify-center microbe-hover">
101
+ <i class="fas fa-bacterium text-4xl text-white"></i>
102
+ </div>
103
+ </div>
104
+ <div class="absolute -bottom-5 -right-5">
105
+ <div class="bg-white bg-opacity-20 rounded-full w-24 h-24 flex items-center justify-center microbe-hover">
106
+ <i class="fas fa-virus text-3xl text-white"></i>
107
+ </div>
108
+ </div>
109
+ </div>
110
+ </div>
111
+ </div>
112
+ </div>
113
+ </header>
114
+
115
+ <!-- Search Interface -->
116
+ <section class="container mx-auto px-6 -mt-16 relative z-20 mb-24">
117
+ <div class="bg-white rounded-xl shadow-2xl p-6">
118
+ <div class="flex flex-col md:flex-row space-y-4 md:space-y-0 md:space-x-4">
119
+ <div class="flex-1 relative">
120
+ <div class="absolute left-4 top-1/2 transform -translate-y-1/2 text-blue-500">
121
+ <i class="fas fa-search"></i>
122
+ </div>
123
+ <input type="text" placeholder="Search symptoms, microbes, or treatments..."
124
+ class="search-focus w-full pl-12 pr-4 py-4 border border-gray-200 rounded-lg focus:outline-none focus:border-blue-400">
125
+ </div>
126
+ <button class="bg-blue-600 hover:bg-blue-700 text-white px-6 py-4 rounded-lg font-semibold transition-all flex items-center justify-center">
127
+ <i class="fas fa-dna mr-2"></i> Analyze
128
+ </button>
129
+ </div>
130
+
131
+ <div class="mt-6 grid grid-cols-2 md:grid-cols-4 gap-4">
132
+ <div class="bg-blue-50 border border-blue-100 rounded-lg p-3 text-center cursor-pointer hover:bg-blue-100 transition-colors">
133
+ <div class="text-blue-600 mb-1"><i class="fas fa-heartbeat"></i></div>
134
+ <div class="text-sm font-medium text-blue-800">Gut Health</div>
135
+ </div>
136
+ <div class="bg-purple-50 border border-purple-100 rounded-lg p-3 text-center cursor-pointer hover:bg-purple-100 transition-colors">
137
+ <div class="text-purple-600 mb-1"><i class="fas fa-brain"></i></div>
138
+ <div class="text-sm font-medium text-purple-800">Mental Health</div>
139
+ </div>
140
+ <div class="bg-green-50 border border-green-100 rounded-lg p-3 text-center cursor-pointer hover:bg-green-100 transition-colors">
141
+ <div class="text-green-600 mb-1"><i class="fas fa-weight"></i></div>
142
+ <div class="text-sm font-medium text-green-800">Metabolism</div>
143
+ </div>
144
+ <div class="bg-amber-50 border border-amber-100 rounded-lg p-3 text-center cursor-pointer hover:bg-amber-100 transition-colors">
145
+ <div class="text-amber-600 mb-1"><i class="fas fa-allergies"></i></div>
146
+ <div class="text-sm font-medium text-amber-800">Immunity</div>
147
+ </div>
148
+ </div>
149
+ </div>
150
+ </section>
151
+
152
+ <!-- Unique Value Proposition -->
153
+ <section class="container mx-auto px-6 mb-24">
154
+ <div class="text-center mb-16">
155
+ <h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">Why Our Technology is Revolutionary</h2>
156
+ <p class="text-xl text-gray-600 max-w-3xl mx-auto">
157
+ Connecting the dots between microbiome research and human health like never before
158
+ </p>
159
+ </div>
160
+
161
+ <div class="grid md:grid-cols-3 gap-8">
162
+ <div class="bg-white p-8 rounded-xl shadow-lg hover:shadow-xl transition-shadow">
163
+ <div class="bg-blue-100 w-16 h-16 rounded-full flex items-center justify-center mb-6 mx-auto">
164
+ <i class="fas fa-project-diagram text-blue-600 text-2xl"></i>
165
+ </div>
166
+ <h3 class="text-xl font-bold text-center mb-3">Holistic Connections</h3>
167
+ <p class="text-gray-600 text-center">
168
+ Our AI maps complex relationships between 10,000+ microbial species and human health conditions.
169
+ </p>
170
+ </div>
171
+ <div class="bg-white p-8 rounded-xl shadow-lg hover:shadow-xl transition-shadow glow-effect">
172
+ <div class="bg-purple-100 w-16 h-16 rounded-full flex items-center justify-center mb-6 mx-auto">
173
+ <i class="fas fa-chart-network text-purple-600 text-2xl"></i>
174
+ </div>
175
+ <h3 class="text-xl font-bold text-center mb-3">Predictive Analytics</h3>
176
+ <p class="text-gray-600 text-center">
177
+ Anticipate health trends and microbiome changes before symptoms appear with our predictive models.
178
+ </p>
179
+ </div>
180
+ <div class="bg-white p-8 rounded-xl shadow-lg hover:shadow-xl transition-shadow">
181
+ <div class="bg-green-100 w-16 h-16 rounded-full flex items-center justify-center mb-6 mx-auto">
182
+ <i class="fas fa-user-md text-green-600 text-2xl"></i>
183
+ </div>
184
+ <h3 class="text-xl font-bold text-center mb-3">Clinical Applications</h3>
185
+ <p class="text-gray-600 text-center">
186
+ Directly applicable to patient care with personalized microbiome intervention recommendations.
187
+ </p>
188
+ </div>
189
+ </div>
190
+ </section>
191
+
192
+ <!-- Data Visualization -->
193
+ <section class="bg-gray-100 py-16 mb-24">
194
+ <div class="container mx-auto px-6">
195
+ <div class="flex flex-col lg:flex-row items-center">
196
+ <div class="lg:w-1/2 mb-12 lg:mb-0 lg:pr-12">
197
+ <h2 class="text-3xl font-bold text-gray-800 mb-6">Interactive Microbiome Network</h2>
198
+ <p class="text-gray-600 mb-6">
199
+ Explore our dynamic visualization of microbial ecosystems and their connections to human physiology.
200
+ Each node represents a microbial species or health factor - click to discover relationships.
201
+ </p>
202
+ <div class="flex space-x-4">
203
+ <button class="bg-blue-600 text-white px-6 py-2 rounded-full text-sm font-semibold hover:bg-blue-700 transition-colors">
204
+ <i class="fas fa-play mr-1"></i> Tutorial
205
+ </button>
206
+ <button class="border border-blue-600 text-blue-600 px-6 py-2 rounded-full text-sm font-semibold hover:bg-blue-50 transition-colors">
207
+ <i class="fas fa-download mr-1"></i> Sample Data
208
+ </button>
209
+ </div>
210
+ </div>
211
+ <div class="lg:w-1/2 bg-white p-6 rounded-xl shadow-lg">
212
+ <div class="bg-gray-200 rounded-lg overflow-hidden" style="height: 350px;">
213
+ <div class="flex items-center justify-center h-full">
214
+ <div class="text-center">
215
+ <i class="fas fa-network-wired text-5xl text-gray-400 mb-4"></i>
216
+ <p class="text-gray-600">Interactive microbiome network visualization</p>
217
+ <div class="mt-4 flex justify-center space-x-2">
218
+ <div class="w-3 h-3 rounded-full bg-blue-500"></div>
219
+ <div class="w-3 h-3 rounded-full bg-green-500"></div>
220
+ <div class="w-3 h-3 rounded-full bg-purple-500"></div>
221
+ <div class="w-3 h-3 rounded-full bg-yellow-500"></div>
222
+ <div class="w-3 h-3 rounded-full bg-red-500"></div>
223
+ </div>
224
+ </div>
225
+ </div>
226
+ </div>
227
+ </div>
228
+ </div>
229
+ </div>
230
+ </section>
231
+
232
+ <!-- Testimonials -->
233
+ <section class="container mx-auto px-6 mb-24">
234
+ <div class="bg-white rounded-xl shadow-lg overflow-hidden">
235
+ <div class="md:flex">
236
+ <div class="md:w-1/3 bg-blue-600 text-white p-8 flex flex-col justify-center">
237
+ <h2 class="text-2xl font-bold mb-4">Trusted by Leading Researchers</h2>
238
+ <p class="opacity-90 mb-6">
239
+ Our platform has been adopted by top research institutions and healthcare organizations worldwide.
240
+ </p>
241
+ <div class="flex space-x-2">
242
+ <div class="bg-white bg-opacity-20 rounded-full w-10 h-10 flex items-center justify-center">
243
+ <i class="fas fa-quote-left"></i>
244
+ </div>
245
+ <div>
246
+ <div class="font-bold">4.9/5</div>
247
+ <div class="text-xs opacity-80">Average rating</div>
248
+ </div>
249
+ </div>
250
+ </div>
251
+ <div class="md:w-2/3 p-8">
252
+ <div class="grid md:grid-cols-2 gap-8">
253
+ <div>
254
+ <div class="flex items-center mb-4">
255
+ <div class="w-12 h-12 rounded-full bg-blue-100 flex items-center justify-center mr-4">
256
+ <i class="fas fa-user-md text-blue-600"></i>
257
+ </div>
258
+ <div>
259
+ <div class="font-bold">Dr. Sarah Chen</div>
260
+ <div class="text-sm text-gray-500">Harvard Medical School</div>
261
+ </div>
262
+ </div>
263
+ <p class="text-gray-600">
264
+ "This platform has revolutionized how we approach microbiome research. The connections it reveals between microbial populations and chronic conditions are game-changing."
265
+ </p>
266
+ </div>
267
+ <div>
268
+ <div class="flex items-center mb-4">
269
+ <div class="w-12 h-12 rounded-full bg-green-100 flex items-center justify-center mr-4">
270
+ <i class="fas fa-flask text-green-600"></i>
271
+ </div>
272
+ <div>
273
+ <div class="font-bold">Prof. James Wilson</div>
274
+ <div class="text-sm text-gray-500">Stanford University</div>
275
+ </div>
276
+ </div>
277
+ <p class="text-gray-600">
278
+ "The predictive analytics capabilities have helped us identify potential microbiome-based interventions months before traditional methods would."
279
+ </p>
280
+ </div>
281
+ </div>
282
+ </div>
283
+ </div>
284
+ </div>
285
+ </section>
286
+
287
+ <!-- CTA Section -->
288
+ <section class="microbiome-gradient text-white py-16 mb-12 rounded-3xl mx-6">
289
+ <div class="container mx-auto px-6 text-center">
290
+ <h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to Transform Microbiome Research?</h2>
291
+ <p class="text-xl opacity-90 mb-8 max-w-3xl mx-auto">
292
+ Join hundreds of researchers and clinicians using our award-winning platform to unlock new discoveries.
293
+ </p>
294
+ <div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-6">
295
+ <button class="bg-white text-blue-700 px-8 py-4 rounded-full font-bold hover:bg-opacity-90 transition-all transform hover:scale-105">
296
+ Start Free Trial
297
+ </button>
298
+ <button class="border-2 border-white border-opacity-50 px-8 py-4 rounded-full font-bold hover:bg-white hover:bg-opacity-10 transition-all transform hover:scale-105">
299
+ Schedule Demo
300
+ </button>
301
+ </div>
302
+ </div>
303
+ </section>
304
+
305
+ <!-- Footer -->
306
+ <footer class="bg-gray-900 text-white py-12">
307
+ <div class="container mx-auto px-6">
308
+ <div class="grid md:grid-cols-4 gap-8 mb-8">
309
+ <div>
310
+ <h3 class="text-xl font-bold mb-4 flex items-center">
311
+ <i class="fas fa-dna mr-2"></i> Microbiome Explorer
312
+ </h3>
313
+ <p class="text-gray-400">
314
+ The world's most advanced holistic search engine for human microbiome research.
315
+ </p>
316
+ </div>
317
+ <div>
318
+ <h4 class="font-bold mb-4">Research</h4>
319
+ <ul class="space-y-2">
320
+ <li><a href="#" class="text-gray-400 hover:text-white transition-colors">Database</a></li>
321
+ <li><a href="#" class="text-gray-400 hover:text-white transition-colors">Analytics</a></li>
322
+ <li><a href="#" class="text-gray-400 hover:text-white transition-colors">Visualizations</a></li>
323
+ <li><a href="#" class="text-gray-400 hover:text-white transition-colors">API Access</a></li>
324
+ </ul>
325
+ </div>
326
+ <div>
327
+ <h4 class="font-bold mb-4">Resources</h4>
328
+ <ul class="space-y-2">
329
+ <li><a href="#" class="text-gray-400 hover:text-white transition-colors">Documentation</a></li>
330
+ <li><a href="#" class="text-gray-400 hover:text-white transition-colors">Case Studies</a></li>
331
+ <li><a href="#" class="text-gray-400 hover:text-white transition-colors">Research Papers</a></li>
332
+ <li><a href="#" class="text-gray-400 hover:text-white transition-colors">Blog</a></li>
333
+ </ul>
334
+ </div>
335
+ <div>
336
+ <h4 class="font-bold mb-4">Connect</h4>
337
+ <div class="flex space-x-4 mb-4">
338
+ <a href="#" class="w-10 h-10 bg-gray-800 rounded-full flex items-center justify-center hover:bg-blue-600 transition-colors">
339
+ <i class="fab fa-twitter"></i>
340
+ </a>
341
+ <a href="#" class="w-10 h-10 bg-gray-800 rounded-full flex items-center justify-center hover:bg-blue-700 transition-colors">
342
+ <i class="fab fa-linkedin-in"></i>
343
+ </a>
344
+ <a href="#" class="w-10 h-10 bg-gray-800 rounded-full flex items-center justify-center hover:bg-gray-700 transition-colors">
345
+ <i class="fab fa-github"></i>
346
+ </a>
347
+ </div>
348
+ <p class="text-gray-400">[email protected]</p>
349
+ </div>
350
+ </div>
351
+ <div class="pt-8 border-t border-gray-800 text-center text-gray-400 text-sm">
352
+ <p>© 2024 Microbiome Explorer. All rights reserved. Patent pending technology.</p>
353
+ </div>
354
+ </div>
355
+ </footer>
356
+
357
+ <script>
358
+ // Typewriter effect
359
+ const phrases = [
360
+ "Human Microbiome",
361
+ "Gut-Brain Axis",
362
+ "Microbial Ecosystems",
363
+ "Health Connections"
364
+ ];
365
+
366
+ let currentPhrase = 0;
367
+ let currentChar = 0;
368
+ let isDeleting = false;
369
+ let isEnd = false;
370
+
371
+ function typeWriter() {
372
+ const typewriterElement = document.querySelector('.typewriter');
373
+ const currentText = phrases[currentPhrase];
374
+
375
+ if (isDeleting) {
376
+ typewriterElement.textContent = currentText.substring(0, currentChar - 1);
377
+ currentChar--;
378
+ } else {
379
+ typewriterElement.textContent = currentText.substring(0, currentChar + 1);
380
+ currentChar++;
381
+ }
382
+
383
+ if (!isDeleting && currentChar === currentText.length) {
384
+ isEnd = true;
385
+ isDeleting = true;
386
+ setTimeout(typeWriter, 2000);
387
+ } else if (isDeleting && currentChar === 0) {
388
+ isDeleting = false;
389
+ currentPhrase = (currentPhrase + 1) % phrases.length;
390
+ setTimeout(typeWriter, 500);
391
+ } else {
392
+ const speed = isDeleting ? 100 : 150;
393
+ setTimeout(typeWriter, speed);
394
+ }
395
+ }
396
+
397
+ // Start the typewriter effect
398
+ setTimeout(typeWriter, 1000);
399
+
400
+ // Microbe hover animations
401
+ const microbes = document.querySelectorAll('.microbe-hover');
402
+ microbes.forEach(microbe => {
403
+ microbe.addEventListener('mouseenter', function() {
404
+ this.style.transform = 'scale(1.1) rotate(5deg)';
405
+ });
406
+ microbe.addEventListener('mouseleave', function() {
407
+ this.style.transform = 'scale(1) rotate(0deg)';
408
+ });
409
+ });
410
+
411
+ // Search focus effect
412
+ const searchInput = document.querySelector('.search-focus');
413
+ searchInput.addEventListener('focus', function() {
414
+ this.style.transform = 'scale(1.02)';
415
+ this.style.boxShadow = '0 5px 15px rgba(0, 91, 234, 0.2)';
416
+ });
417
+ searchInput.addEventListener('blur', function() {
418
+ this.style.transform = 'scale(1)';
419
+ this.style.boxShadow = 'none';
420
+ });
421
+ </script>
422
+ <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=Neomyst/microbiome-explorer" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
423
+ </html>