replace image - Follow Up Deployment
Browse files- index.html +30 -4
- prompts.txt +5 -1
index.html
CHANGED
|
@@ -69,10 +69,20 @@
|
|
| 69 |
<a href="#" class="nav-link">Support</a>
|
| 70 |
</div>
|
| 71 |
<div class="flex items-center space-x-4">
|
| 72 |
-
<
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 73 |
<a href="#" class="px-6 py-2 bg-indigo-600 rounded-md btn-hover">Get Started</a>
|
| 74 |
</div>
|
| 75 |
-
<button class="md:hidden">
|
| 76 |
<i data-feather="menu"></i>
|
| 77 |
</button>
|
| 78 |
</div>
|
|
@@ -98,7 +108,7 @@
|
|
| 98 |
</div>
|
| 99 |
</div>
|
| 100 |
<div class="md:w-1/2" data-aos="fade-left">
|
| 101 |
-
<img src="http://static.photos/technology/1024x576/42" alt="
|
| 102 |
</div>
|
| 103 |
</div>
|
| 104 |
</section>
|
|
@@ -253,7 +263,7 @@
|
|
| 253 |
</div>
|
| 254 |
</div>
|
| 255 |
<p class="text-gray-400">
|
| 256 |
-
"
|
| 257 |
</p>
|
| 258 |
</div>
|
| 259 |
<div class="bg-gray-800 p-8 rounded-xl card-hover" data-aos="fade-up" data-aos-delay="200">
|
|
@@ -379,6 +389,22 @@
|
|
| 379 |
once: true
|
| 380 |
});
|
| 381 |
feather.replace();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 382 |
</script>
|
| 383 |
</body>
|
| 384 |
</html>
|
|
|
|
| 69 |
<a href="#" class="nav-link">Support</a>
|
| 70 |
</div>
|
| 71 |
<div class="flex items-center space-x-4">
|
| 72 |
+
<div class="relative group">
|
| 73 |
+
<button class="flex items-center space-x-1 px-3 py-2 rounded-md hover:bg-indigo-700 transition">
|
| 74 |
+
<i data-feather="globe" class="w-5 h-5"></i>
|
| 75 |
+
<span class="hidden sm:inline">English</span>
|
| 76 |
+
<i data-feather="chevron-down" class="w-4 h-4 hidden sm:block"></i>
|
| 77 |
+
</button>
|
| 78 |
+
<div class="absolute right-0 mt-2 w-40 bg-gray-800 rounded-md shadow-lg z-10 hidden group-hover:block">
|
| 79 |
+
<a href="#" class="block px-4 py-2 text-white hover:bg-indigo-700 transition">English</a>
|
| 80 |
+
<a href="#" class="block px-4 py-2 text-white hover:bg-indigo-700 transition">Nederlands</a>
|
| 81 |
+
</div>
|
| 82 |
+
</div>
|
| 83 |
<a href="#" class="px-6 py-2 bg-indigo-600 rounded-md btn-hover">Get Started</a>
|
| 84 |
</div>
|
| 85 |
+
<button class="md:hidden" id="mobile-menu-button">
|
| 86 |
<i data-feather="menu"></i>
|
| 87 |
</button>
|
| 88 |
</div>
|
|
|
|
| 108 |
</div>
|
| 109 |
</div>
|
| 110 |
<div class="md:w-1/2" data-aos="fade-left">
|
| 111 |
+
<img src="http://static.photos/technology/1024x576/42" alt="StreamDream App" class="rounded-xl shadow-2xl card-hover hovered-element">
|
| 112 |
</div>
|
| 113 |
</div>
|
| 114 |
</section>
|
|
|
|
| 263 |
</div>
|
| 264 |
</div>
|
| 265 |
<p class="text-gray-400">
|
| 266 |
+
"StreamDream has completely changed how I watch TV. The interface is intuitive and the content selection is amazing!"
|
| 267 |
</p>
|
| 268 |
</div>
|
| 269 |
<div class="bg-gray-800 p-8 rounded-xl card-hover" data-aos="fade-up" data-aos-delay="200">
|
|
|
|
| 389 |
once: true
|
| 390 |
});
|
| 391 |
feather.replace();
|
| 392 |
+
|
| 393 |
+
// Mobile menu toggle
|
| 394 |
+
document.getElementById('mobile-menu-button').addEventListener('click', function() {
|
| 395 |
+
const menu = document.querySelector('.md\\:flex.space-x-8');
|
| 396 |
+
menu.classList.toggle('hidden');
|
| 397 |
+
menu.classList.toggle('flex');
|
| 398 |
+
menu.classList.toggle('flex-col');
|
| 399 |
+
menu.classList.toggle('absolute');
|
| 400 |
+
menu.classList.toggle('top-16');
|
| 401 |
+
menu.classList.toggle('right-6');
|
| 402 |
+
menu.classList.toggle('bg-gray-800');
|
| 403 |
+
menu.classList.toggle('p-4');
|
| 404 |
+
menu.classList.toggle('rounded-lg');
|
| 405 |
+
menu.classList.toggle('shadow-lg');
|
| 406 |
+
menu.classList.toggle('z-10');
|
| 407 |
+
});
|
| 408 |
</script>
|
| 409 |
</body>
|
| 410 |
</html>
|
prompts.txt
CHANGED
|
@@ -1,2 +1,6 @@
|
|
| 1 |
recreate https://watchtivo.com/ and add your own professional twists, like hover effects
|
| 2 |
-
change the logo from WatchTiVo to StreamDream
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
recreate https://watchtivo.com/ and add your own professional twists, like hover effects
|
| 2 |
+
change the logo from WatchTiVo to StreamDream
|
| 3 |
+
get rid of sign in and i want an option to switch language from english to netherlnds
|
| 4 |
+
replace image with uploaded image and change the image up a bit for copyright
|
| 5 |
+
make the language option responsive
|
| 6 |
+
replace image
|