i4yush commited on
Commit
4cd3e72
·
verified ·
1 Parent(s): ccbebd2

remove this - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +433 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Heyy
3
- emoji: 💻
4
- colorFrom: red
5
- colorTo: indigo
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: heyy
3
+ emoji: 🐳
4
+ colorFrom: green
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,433 @@
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>Interactive UI Showcase</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
+ /* Custom CSS for elements that need more precise control */
11
+ .gradient-bg {
12
+ background: linear-gradient(135deg, #6e8efb, #a777e3);
13
+ }
14
+ .card-hover-effect {
15
+ transition: all 0.3s ease;
16
+ }
17
+ .card-hover-effect:hover {
18
+ transform: translateY(-5px);
19
+ box-shadow: 0 10px 20px rgba(0,0,0,0.1);
20
+ }
21
+ .wave-shape {
22
+ position: absolute;
23
+ bottom: 0;
24
+ left: 0;
25
+ width: 100%;
26
+ overflow: hidden;
27
+ line-height: 0;
28
+ }
29
+ .wave-shape svg {
30
+ position: relative;
31
+ display: block;
32
+ width: calc(100% + 1.3px);
33
+ height: 150px;
34
+ }
35
+ .wave-shape .shape-fill {
36
+ fill: #FFFFFF;
37
+ }
38
+ @keyframes float {
39
+ 0% { transform: translateY(0px); }
40
+ 50% { transform: translateY(-10px); }
41
+ 100% { transform: translateY(0px); }
42
+ }
43
+ .floating {
44
+ animation: float 3s ease-in-out infinite;
45
+ }
46
+ </style>
47
+ </head>
48
+ <body class="font-sans antialiased text-gray-800">
49
+ <!-- Navigation -->
50
+ <nav class="bg-white shadow-lg sticky top-0 z-50">
51
+ <div class="max-w-6xl mx-auto px-4">
52
+ <div class="flex justify-between items-center h-16">
53
+ <div class="flex items-center space-x-4">
54
+ <div class="flex-shrink-0">
55
+ <i class="fas fa-cube text-purple-600 text-2xl"></i>
56
+ </div>
57
+ <div class="hidden md:block">
58
+ <div class="ml-10 flex items-baseline space-x-4">
59
+ <a href="#" class="px-3 py-2 rounded-md text-sm font-medium text-purple-600 bg-purple-100">Home</a>
60
+ <a href="#" class="px-3 py-2 rounded-md text-sm font-medium text-gray-600 hover:text-purple-600">Features</a>
61
+ <a href="#" class="px-3 py-2 rounded-md text-sm font-medium text-gray-600 hover:text-purple-600">Pricing</a>
62
+ <a href="#" class="px-3 py-2 rounded-md text-sm font-medium text-gray-600 hover:text-purple-600">About</a>
63
+ </div>
64
+ </div>
65
+ </div>
66
+ <div class="hidden md:block">
67
+ <div class="ml-4 flex items-center md:ml-6">
68
+ <button class="px-4 py-2 border border-transparent text-sm font-medium rounded-md text-white bg-purple-600 hover:bg-purple-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-purple-500">
69
+ Get Started
70
+ </button>
71
+ </div>
72
+ </div>
73
+ <div class="md:hidden flex items-center">
74
+ <button id="mobile-menu-button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-600 hover:text-purple-600 focus:outline-none">
75
+ <i class="fas fa-bars"></i>
76
+ </button>
77
+ </div>
78
+ </div>
79
+ </div>
80
+
81
+ <!-- Mobile menu -->
82
+ <div id="mobile-menu" class="hidden md:hidden">
83
+ <div class="px-2 pt-2 pb-3 space-y-1 sm:px-3">
84
+ <a href="#" class="block px-3 py-2 rounded-md text-base font-medium text-purple-600 bg-purple-100">Home</a>
85
+ <a href="#" class="block px-3 py-2 rounded-md text-base font-medium text-gray-600 hover:text-purple-600">Features</a>
86
+ <a href="#" class="block px-3 py-2 rounded-md text-base font-medium text-gray-600 hover:text-purple-600">Pricing</a>
87
+ <a href="#" class="block px-3 py-2 rounded-md text-base font-medium text-gray-600 hover:text-purple-600">About</a>
88
+ <button class="block w-full text-left px-3 py-2 rounded-md text-base font-medium text-white bg-purple-600 hover:bg-purple-700">
89
+ Get Started
90
+ </button>
91
+ </div>
92
+ </div>
93
+ </nav>
94
+
95
+ <!-- Hero Section -->
96
+ <div class="gradient-bg text-white relative overflow-hidden">
97
+ <div class="max-w-7xl mx-auto py-16 px-4 sm:py-24 sm:px-6 lg:px-8 relative z-10">
98
+ <div class="text-center">
99
+ <h1 class="text-4xl md:text-6xl font-extrabold tracking-tight">
100
+ <span class="block">Build Amazing</span>
101
+ <span class="block">Digital Experiences</span>
102
+ </h1>
103
+ <p class="mt-6 max-w-lg mx-auto text-xl">
104
+ Our platform helps you create beautiful, responsive websites with ease.
105
+ </p>
106
+ <div class="mt-10 flex justify-center space-x-4">
107
+ <button class="px-8 py-3 border border-transparent text-base font-medium rounded-md text-purple-600 bg-white hover:bg-gray-100 md:py-4 md:text-lg md:px-10 transition duration-300 transform hover:scale-105">
108
+ Get Started
109
+ </button>
110
+ <button class="px-8 py-3 border border-transparent text-base font-medium rounded-md text-white bg-purple-700 bg-opacity-60 hover:bg-opacity-80 md:py-4 md:text-lg md:px-10 transition duration-300 transform hover:scale-105">
111
+ Learn More
112
+ </button>
113
+ </div>
114
+ </div>
115
+ </div>
116
+
117
+ <div class="wave-shape">
118
+ <svg data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none">
119
+ <path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" class="shape-fill"></path>
120
+ </svg>
121
+ </div>
122
+ </div>
123
+
124
+ <!-- Features Section -->
125
+ <div class="py-12 bg-white">
126
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
127
+ <div class="lg:text-center">
128
+ <h2 class="text-base text-purple-600 font-semibold tracking-wide uppercase">Features</h2>
129
+ <p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl">
130
+ A better way to build
131
+ </p>
132
+ <p class="mt-4 max-w-2xl text-xl text-gray-500 lg:mx-auto">
133
+ Everything you need to create amazing digital experiences.
134
+ </p>
135
+ </div>
136
+
137
+ <div class="mt-10">
138
+ <div class="grid grid-cols-1 gap-10 sm:grid-cols-2 lg:grid-cols-3">
139
+ <!-- Feature 1 -->
140
+ <div class="card-hover-effect bg-white p-6 rounded-lg shadow-md">
141
+ <div class="flex items-center justify-center h-12 w-12 rounded-md bg-purple-100 text-purple-600 mb-4">
142
+ <i class="fas fa-bolt text-xl"></i>
143
+ </div>
144
+ <h3 class="text-lg font-medium text-gray-900 mb-2">Lightning Fast</h3>
145
+ <p class="text-gray-500">
146
+ Optimized for performance with minimal overhead and maximum speed.
147
+ </p>
148
+ </div>
149
+
150
+ <!-- Feature 2 -->
151
+ <div class="card-hover-effect bg-white p-6 rounded-lg shadow-md">
152
+ <div class="flex items-center justify-center h-12 w-12 rounded-md bg-purple-100 text-purple-600 mb-4">
153
+ <i class="fas fa-mobile-alt text-xl"></i>
154
+ </div>
155
+ <h3 class="text-lg font-medium text-gray-900 mb-2">Fully Responsive</h3>
156
+ <p class="text-gray-500">
157
+ Looks great on any device, from phones to large desktop screens.
158
+ </p>
159
+ </div>
160
+
161
+ <!-- Feature 3 -->
162
+ <div class="card-hover-effect bg-white p-6 rounded-lg shadow-md">
163
+ <div class="flex items-center justify-center h-12 w-12 rounded-md bg-purple-100 text-purple-600 mb-4">
164
+ <i class="fas fa-palette text-xl"></i>
165
+ </div>
166
+ <h3 class="text-lg font-medium text-gray-900 mb-2">Customizable</h3>
167
+ <p class="text-gray-500">
168
+ Easily customize colors, fonts, and layouts to match your brand.
169
+ </p>
170
+ </div>
171
+
172
+ <!-- Feature 4 -->
173
+ <div class="card-hover-effect bg-white p-6 rounded-lg shadow-md">
174
+ <div class="flex items-center justify-center h-12 w-12 rounded-md bg-purple-100 text-purple-600 mb-4">
175
+ <i class="fas fa-code text-xl"></i>
176
+ </div>
177
+ <h3 class="text-lg font-medium text-gray-900 mb-2">Clean Code</h3>
178
+ <p class="text-gray-500">
179
+ Well-structured, semantic code that's easy to understand and maintain.
180
+ </p>
181
+ </div>
182
+
183
+ <!-- Feature 5 -->
184
+ <div class="card-hover-effect bg-white p-6 rounded-lg shadow-md">
185
+ <div class="flex items-center justify-center h-12 w-12 rounded-md bg-purple-100 text-purple-600 mb-4">
186
+ <i class="fas fa-shield-alt text-xl"></i>
187
+ </div>
188
+ <h3 class="text-lg font-medium text-gray-900 mb-2">Secure</h3>
189
+ <p class="text-gray-500">
190
+ Built with security in mind to protect your data and your users.
191
+ </p>
192
+ </div>
193
+
194
+ <!-- Feature 6 -->
195
+ <div class="card-hover-effect bg-white p-6 rounded-lg shadow-md">
196
+ <div class="flex items-center justify-center h-12 w-12 rounded-md bg-purple-100 text-purple-600 mb-4">
197
+ <i class="fas fa-life-ring text-xl"></i>
198
+ </div>
199
+ <h3 class="text-lg font-medium text-gray-900 mb-2">Support</h3>
200
+ <p class="text-gray-500">
201
+ Dedicated support team ready to help you with any questions.
202
+ </p>
203
+ </div>
204
+ </div>
205
+ </div>
206
+ </div>
207
+ </div>
208
+
209
+ <!-- Stats Section -->
210
+ <div class="bg-gray-50 py-12">
211
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
212
+ <div class="grid grid-cols-2 gap-8 md:grid-cols-4">
213
+ <div class="text-center">
214
+ <div class="text-4xl font-extrabold text-purple-600">10K+</div>
215
+ <div class="mt-2 text-sm font-medium text-gray-500">Happy Customers</div>
216
+ </div>
217
+ <div class="text-center">
218
+ <div class="text-4xl font-extrabold text-purple-600">24/7</div>
219
+ <div class="mt-2 text-sm font-medium text-gray-500">Support</div>
220
+ </div>
221
+ <div class="text-center">
222
+ <div class="text-4xl font-extrabold text-purple-600">99.9%</div>
223
+ <div class="mt-2 text-sm font-medium text-gray-500">Uptime</div>
224
+ </div>
225
+ <div class="text-center">
226
+ <div class="text-4xl font-extrabold text-purple-600">5M+</div>
227
+ <div class="mt-2 text-sm font-medium text-gray-500">Downloads</div>
228
+ </div>
229
+ </div>
230
+ </div>
231
+ </div>
232
+
233
+ <!-- CTA Section -->
234
+ <div class="bg-purple-700">
235
+ <div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:py-16 lg:px-8 lg:flex lg:items-center lg:justify-between">
236
+ <h2 class="text-3xl font-extrabold tracking-tight text-white sm:text-4xl">
237
+ <span class="block">Ready to dive in?</span>
238
+ <span class="block text-purple-200">Start your free trial today.</span>
239
+ </h2>
240
+ <div class="mt-8 flex lg:mt-0 lg:flex-shrink-0">
241
+ <div class="inline-flex rounded-md shadow">
242
+ <a href="#" class="inline-flex items-center justify-center px-5 py-3 border border-transparent text-base font-medium rounded-md text-purple-600 bg-white hover:bg-purple-50">
243
+ Get started
244
+ </a>
245
+ </div>
246
+ <div class="ml-3 inline-flex rounded-md shadow">
247
+ <a href="#" class="inline-flex items-center justify-center px-5 py-3 border border-transparent text-base font-medium rounded-md text-white bg-purple-600 bg-opacity-60 hover:bg-opacity-70">
248
+ Learn more
249
+ </a>
250
+ </div>
251
+ </div>
252
+ </div>
253
+ </div>
254
+
255
+ <!-- Footer -->
256
+ <footer class="bg-gray-800">
257
+ <div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:px-8">
258
+ <div class="grid grid-cols-2 md:grid-cols-4 gap-8">
259
+ <div>
260
+ <h3 class="text-white text-sm font-semibold tracking-wider uppercase mb-4">Product</h3>
261
+ <ul class="space-y-2">
262
+ <li><a href="#" class="text-gray-400 hover:text-white">Features</a></li>
263
+ <li><a href="#" class="text-gray-400 hover:text-white">Pricing</a></li>
264
+ <li><a href="#" class="text-gray-400 hover:text-white">Documentation</a></li>
265
+ <li><a href="#" class="text-gray-400 hover:text-white">Releases</a></li>
266
+ </ul>
267
+ </div>
268
+ <div>
269
+ <h3 class="text-white text-sm font-semibold tracking-wider uppercase mb-4">Company</h3>
270
+ <ul class="space-y-2">
271
+ <li><a href="#" class="text-gray-400 hover:text-white">About</a></li>
272
+ <li><a href="#" class="text-gray-400 hover:text-white">Blog</a></li>
273
+ <li><a href="#" class="text-gray-400 hover:text-white">Careers</a></li>
274
+ <li><a href="#" class="text-gray-400 hover:text-white">Contact</a></li>
275
+ </ul>
276
+ </div>
277
+ <div>
278
+ <h3 class="text-white text-sm font-semibold tracking-wider uppercase mb-4">Legal</h3>
279
+ <ul class="space-y-2">
280
+ <li><a href="#" class="text-gray-400 hover:text-white">Privacy</a></li>
281
+ <li><a href="#" class="text-gray-400 hover:text-white">Terms</a></li>
282
+ <li><a href="#" class="text-gray-400 hover:text-white">Cookie Policy</a></li>
283
+ <li><a href="#" class="text-gray-400 hover:text-white">GDPR</a></li>
284
+ </ul>
285
+ </div>
286
+ <div>
287
+ <h3 class="text-white text-sm font-semibold tracking-wider uppercase mb-4">Connect</h3>
288
+ <div class="flex space-x-4">
289
+ <a href="#" class="text-gray-400 hover:text-white">
290
+ <i class="fab fa-twitter"></i>
291
+ </a>
292
+ <a href="#" class="text-gray-400 hover:text-white">
293
+ <i class="fab fa-facebook-f"></i>
294
+ </a>
295
+ <a href="#" class="text-gray-400 hover:text-white">
296
+ <i class="fab fa-instagram"></i>
297
+ </a>
298
+ <a href="#" class="text-gray-400 hover:text-white">
299
+ <i class="fab fa-github"></i>
300
+ </a>
301
+ <a href="#" class="text-gray-400 hover:text-white">
302
+ <i class="fab fa-linkedin-in"></i>
303
+ </a>
304
+ </div>
305
+ <div class="mt-6">
306
+ <p class="text-gray-400 text-sm">
307
+ Subscribe to our newsletter
308
+ </p>
309
+ <div class="mt-2 flex">
310
+ <input type="email" placeholder="Your email" class="px-3 py-2 bg-gray-700 text-white rounded-l-md focus:outline-none focus:ring-2 focus:ring-purple-500 w-full">
311
+ <button class="px-4 py-2 bg-purple-600 text-white rounded-r-md hover:bg-purple-700 focus:outline-none focus:ring-2 focus:ring-purple-500">
312
+ <i class="fas fa-paper-plane"></i>
313
+ </button>
314
+ </div>
315
+ </div>
316
+ </div>
317
+ </div>
318
+ <div class="mt-12 border-t border-gray-700 pt-8 flex flex-col md:flex-row justify-between">
319
+ <p class="text-gray-400 text-sm">
320
+ &copy; 2023 Your Company. All rights reserved.
321
+ </p>
322
+ <div class="mt-4 md:mt-0 flex space-x-6">
323
+ <a href="#" class="text-gray-400 hover:text-white text-sm">Privacy Policy</a>
324
+ <a href="#" class="text-gray-400 hover:text-white text-sm">Terms of Service</a>
325
+ <a href="#" class="text-gray-400 hover:text-white text-sm">Cookie Policy</a>
326
+ </div>
327
+ </div>
328
+ </div>
329
+ </footer>
330
+
331
+ <!-- Floating Action Button -->
332
+ <div class="fixed bottom-6 right-6 z-50">
333
+ <button id="chat-button" class="floating h-14 w-14 rounded-full bg-purple-600 text-white shadow-lg flex items-center justify-center hover:bg-purple-700 focus:outline-none focus:ring-2 focus:ring-purple-500 focus:ring-offset-2">
334
+ <i class="fas fa-comment-dots text-xl"></i>
335
+ </button>
336
+ </div>
337
+
338
+ <!-- Chat Widget (hidden by default) -->
339
+ <div id="chat-widget" class="hidden fixed bottom-20 right-6 w-80 bg-white rounded-lg shadow-xl z-50 overflow-hidden">
340
+ <div class="bg-purple-600 text-white px-4 py-3 flex justify-between items-center">
341
+ <h3 class="font-medium">Chat Support</h3>
342
+ <button id="close-chat" class="text-white hover:text-purple-200 focus:outline-none">
343
+ <i class="fas fa-times"></i>
344
+ </button>
345
+ </div>
346
+ <div class="p-4 h-64 overflow-y-auto">
347
+ <div class="mb-4">
348
+ <div class="bg-gray-100 rounded-lg p-3 max-w-xs">
349
+ <p class="text-sm">Hello! How can I help you today?</p>
350
+ </div>
351
+ </div>
352
+ </div>
353
+ <div class="border-t border-gray-200 p-3">
354
+ <div class="flex">
355
+ <input type="text" placeholder="Type your message..." class="flex-1 px-3 py-2 border border-gray-300 rounded-l-md focus:outline-none focus:ring-1 focus:ring-purple-500">
356
+ <button class="px-4 py-2 bg-purple-600 text-white rounded-r-md hover:bg-purple-700 focus:outline-none focus:ring-1 focus:ring-purple-500">
357
+ <i class="fas fa-paper-plane"></i>
358
+ </button>
359
+ </div>
360
+ </div>
361
+ </div>
362
+
363
+ <!-- Back to Top Button -->
364
+ <button id="back-to-top" class="hidden fixed bottom-6 left-6 h-12 w-12 rounded-full bg-gray-800 text-white shadow-lg flex items-center justify-center hover:bg-gray-700 focus:outline-none focus:ring-2 focus:ring-gray-500 focus:ring-offset-2 z-50">
365
+ <i class="fas fa-arrow-up"></i>
366
+ </button>
367
+
368
+ <script>
369
+ // Mobile menu toggle
370
+ const mobileMenuButton = document.getElementById('mobile-menu-button');
371
+ const mobileMenu = document.getElementById('mobile-menu');
372
+
373
+ mobileMenuButton.addEventListener('click', () => {
374
+ mobileMenu.classList.toggle('hidden');
375
+ });
376
+
377
+ // Chat widget toggle
378
+ const chatButton = document.getElementById('chat-button');
379
+ const chatWidget = document.getElementById('chat-widget');
380
+ const closeChat = document.getElementById('close-chat');
381
+
382
+ chatButton.addEventListener('click', () => {
383
+ chatWidget.classList.toggle('hidden');
384
+ });
385
+
386
+ closeChat.addEventListener('click', () => {
387
+ chatWidget.classList.add('hidden');
388
+ });
389
+
390
+ // Back to top button
391
+ const backToTopButton = document.getElementById('back-to-top');
392
+
393
+ window.addEventListener('scroll', () => {
394
+ if (window.pageYOffset > 300) {
395
+ backToTopButton.classList.remove('hidden');
396
+ } else {
397
+ backToTopButton.classList.add('hidden');
398
+ }
399
+ });
400
+
401
+ backToTopButton.addEventListener('click', () => {
402
+ window.scrollTo({ top: 0, behavior: 'smooth' });
403
+ });
404
+
405
+ // Simple animation for cards on scroll
406
+ const cards = document.querySelectorAll('.card-hover-effect');
407
+
408
+ const animateOnScroll = () => {
409
+ cards.forEach((card, index) => {
410
+ const cardPosition = card.getBoundingClientRect().top;
411
+ const screenPosition = window.innerHeight / 1.3;
412
+
413
+ if (cardPosition < screenPosition) {
414
+ setTimeout(() => {
415
+ card.style.opacity = '1';
416
+ card.style.transform = 'translateY(0)';
417
+ }, index * 100);
418
+ }
419
+ });
420
+ };
421
+
422
+ // Set initial state
423
+ cards.forEach(card => {
424
+ card.style.opacity = '0';
425
+ card.style.transform = 'translateY(20px)';
426
+ card.style.transition = 'opacity 0.5s ease, transform 0.5s ease';
427
+ });
428
+
429
+ window.addEventListener('scroll', animateOnScroll);
430
+ window.addEventListener('load', animateOnScroll);
431
+ </script>
432
+ <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=i4yush/heyy" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
433
+ </html>