add a shopping cart logo a tthe top right in gold font
Browse files- about.html +7 -2
- currency.html +5 -2
- events.html +6 -1
- index.html +39 -37
- pricing.html +5 -2
- results.html +6 -3
- script.js +37 -1
- style.css +29 -1
about.html
CHANGED
|
@@ -45,9 +45,14 @@
|
|
| 45 |
<a href="currency.html" class="text-white hover:text-yellow-500 transition">Currency</a>
|
| 46 |
<a href="events.html" class="text-white hover:text-yellow-500 transition">Events</a>
|
| 47 |
<a href="results.html" class="text-white hover:text-yellow-500 transition">Results</a>
|
| 48 |
-
</div>
|
| 49 |
-
<
|
|
|
|
|
|
|
|
|
|
|
|
|
| 50 |
</div>
|
|
|
|
| 51 |
</div>
|
| 52 |
</nav>
|
| 53 |
|
|
|
|
| 45 |
<a href="currency.html" class="text-white hover:text-yellow-500 transition">Currency</a>
|
| 46 |
<a href="events.html" class="text-white hover:text-yellow-500 transition">Events</a>
|
| 47 |
<a href="results.html" class="text-white hover:text-yellow-500 transition">Results</a>
|
| 48 |
+
</div>
|
| 49 |
+
<div class="flex items-center space-x-6">
|
| 50 |
+
<a href="#" class="text-yellow-500 hover:text-yellow-400 transition">
|
| 51 |
+
<i data-feather="shopping-cart"></i>
|
| 52 |
+
</a>
|
| 53 |
+
</div>
|
| 54 |
</div>
|
| 55 |
+
</div>
|
| 56 |
</div>
|
| 57 |
</nav>
|
| 58 |
|
currency.html
CHANGED
|
@@ -62,8 +62,11 @@
|
|
| 62 |
<a href="events.html" class="text-white hover:text-yellow-500 transition">Events</a>
|
| 63 |
<a href="results.html" class="text-white hover:text-yellow-500 transition">Stress Reliever</a>
|
| 64 |
</div>
|
| 65 |
-
<div class="flex items-center space-x-
|
| 66 |
-
<
|
|
|
|
|
|
|
|
|
|
| 67 |
<button id="language-button" class="flex items-center space-x-1 bg-black bg-opacity-50 px-3 py-2 rounded-lg border border-yellow-500 hover:bg-yellow-500 hover:text-black transition">
|
| 68 |
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-globe mr-1"><circle cx="12" cy="12" r="10"></circle><line x1="2" y1="12" x2="22" y2="12"></line><path d="M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z"></path></svg>
|
| 69 |
<span id="current-language">EN</span>
|
|
|
|
| 62 |
<a href="events.html" class="text-white hover:text-yellow-500 transition">Events</a>
|
| 63 |
<a href="results.html" class="text-white hover:text-yellow-500 transition">Stress Reliever</a>
|
| 64 |
</div>
|
| 65 |
+
<div class="flex items-center space-x-6">
|
| 66 |
+
<a href="#" class="text-yellow-500 hover:text-yellow-400 transition">
|
| 67 |
+
<i data-feather="shopping-cart"></i>
|
| 68 |
+
</a>
|
| 69 |
+
<div class="relative">
|
| 70 |
<button id="language-button" class="flex items-center space-x-1 bg-black bg-opacity-50 px-3 py-2 rounded-lg border border-yellow-500 hover:bg-yellow-500 hover:text-black transition">
|
| 71 |
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-globe mr-1"><circle cx="12" cy="12" r="10"></circle><line x1="2" y1="12" x2="22" y2="12"></line><path d="M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z"></path></svg>
|
| 72 |
<span id="current-language">EN</span>
|
events.html
CHANGED
|
@@ -43,8 +43,13 @@
|
|
| 43 |
<a href="events.html" class="text-yellow-500 hover:text-yellow-400 transition">Events</a>
|
| 44 |
<a href="results.html" class="text-white hover:text-yellow-500 transition">Results</a>
|
| 45 |
</div>
|
| 46 |
-
<
|
|
|
|
|
|
|
|
|
|
|
|
|
| 47 |
</div>
|
|
|
|
| 48 |
</div>
|
| 49 |
</nav>
|
| 50 |
|
|
|
|
| 43 |
<a href="events.html" class="text-yellow-500 hover:text-yellow-400 transition">Events</a>
|
| 44 |
<a href="results.html" class="text-white hover:text-yellow-500 transition">Results</a>
|
| 45 |
</div>
|
| 46 |
+
<div class="flex items-center space-x-6">
|
| 47 |
+
<a href="#" class="text-yellow-500 hover:text-yellow-400 transition">
|
| 48 |
+
<i data-feather="shopping-cart"></i>
|
| 49 |
+
</a>
|
| 50 |
+
</div>
|
| 51 |
</div>
|
| 52 |
+
</div>
|
| 53 |
</div>
|
| 54 |
</nav>
|
| 55 |
|
index.html
CHANGED
|
@@ -77,37 +77,6 @@
|
|
| 77 |
<a href="events.html" class="text-white hover:text-yellow-500 transition">Events</a>
|
| 78 |
<a href="results.html" class="text-white hover:text-yellow-500 transition">Stress Reliever</a>
|
| 79 |
</div>
|
| 80 |
-
<div class="flex items-center space-x-4">
|
| 81 |
-
<div class="relative">
|
| 82 |
-
<button id="language-button" class="flex items-center space-x-1 bg-black bg-opacity-50 px-3 py-2 rounded-lg border border-yellow-500 hover:bg-yellow-500 hover:text-black transition">
|
| 83 |
-
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-globe mr-1"><circle cx="12" cy="12" r="10"></circle><line x1="2" y1="12" x2="22" y2="12"></line><path d="M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z"></path></svg>
|
| 84 |
-
<span id="current-language">EN</span>
|
| 85 |
-
</button>
|
| 86 |
-
<div id="language-dropdown" class="hidden absolute right-0 mt-2 w-48 bg-black border border-yellow-500 rounded-lg shadow-lg py-1 z-50">
|
| 87 |
-
<a href="#" class="language-switch block px-4 py-2 text-white hover:bg-yellow-500 hover:text-black" data-lang="en">English</a>
|
| 88 |
-
<a href="#" class="language-switch block px-4 py-2 text-white hover:bg-yellow-500 hover:text-black" data-lang="es">Español</a>
|
| 89 |
-
<a href="#" class="language-switch block px-4 py-2 text-white hover:bg-yellow-500 hover:text-black" data-lang="fr">Français</a>
|
| 90 |
-
<a href="#" class="language-switch block px-4 py-2 text-white hover:bg-yellow-500 hover:text-black" data-lang="de">Deutsch</a>
|
| 91 |
-
</div>
|
| 92 |
-
</div>
|
| 93 |
-
<div class="relative">
|
| 94 |
-
<button id="cart-button" class="flex items-center space-x-1 bg-black bg-opacity-50 px-3 py-2 rounded-lg border border-yellow-500 hover:bg-yellow-500 hover:text-black transition">
|
| 95 |
-
<i data-feather="shopping-cart" class="text-yellow-500 hover:text-black"></i>
|
| 96 |
-
<span id="cart-count" class="text-white">0</span>
|
| 97 |
-
</button>
|
| 98 |
-
</div>
|
| 99 |
-
<div class="relative">
|
| 100 |
-
<button id="language-button" class="flex items-center space-x-1 bg-black bg-opacity-50 px-3 py-2 rounded-lg border border-yellow-500 hover:bg-yellow-500 hover:text-black transition">
|
| 101 |
-
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-globe mr-1"><circle cx="12" cy="12" r="10"></circle><line x1="2" y1="12" x2="22" y2="12"></line><path d="M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z"></path></svg>
|
| 102 |
-
<span id="current-language">EN</span>
|
| 103 |
-
</button>
|
| 104 |
-
<div id="language-dropdown" class="hidden absolute right-0 mt-2 w-48 bg-black border border-yellow-500 rounded-lg shadow-lg py-1 z-50">
|
| 105 |
-
<a href="#" class="language-switch block px-4 py-2 text-white hover:bg-yellow-500 hover:text-black" data-lang="en">English</a>
|
| 106 |
-
<a href="#" class="language-switch block px-4 py-2 text-white hover:bg-yellow-500 hover:text-black" data-lang="es">Español</a>
|
| 107 |
-
<a href="#" class="language-switch block px-4 py-2 text-white hover:bg-yellow-500 hover:text-black" data-lang="fr">Français</a>
|
| 108 |
-
<a href="#" class="language-switch block px-4 py-2 text-white hover:bg-yellow-500 hover:text-black" data-lang="de">Deutsch</a>
|
| 109 |
-
</div>
|
| 110 |
-
</div>
|
| 111 |
<script>
|
| 112 |
// Cart functionality
|
| 113 |
let cart = [];
|
|
@@ -379,6 +348,39 @@ Get Started
|
|
| 379 |
</p>
|
| 380 |
<div class="flex justify-center">
|
| 381 |
<div class="grid grid-cols-1 gap-8 max-w-4xl">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 382 |
<!-- Core Plan -->
|
| 383 |
<div class="bg-gradient-to-b from-gray-900 to-black p-8 rounded-xl border border-yellow-500 transform hover:scale-105 transition mx-auto">
|
| 384 |
<h3 class="text-2xl font-bold text-center mb-4 text-yellow-500">Amplify Core</h3>
|
|
@@ -491,14 +493,14 @@ Get Started
|
|
| 491 |
<p class="text-xl mb-12 max-w-2xl mx-auto text-gray-300">
|
| 492 |
Join thousands of athletes, performers, and professionals who are mastering their minds with our technology.
|
| 493 |
</p>
|
| 494 |
-
<a href="https://portal.veinternational.org/buybuttons/us0110243/btn/
|
| 495 |
-
|
| 496 |
</a>
|
|
|
|
| 497 |
</div>
|
| 498 |
</section>
|
| 499 |
-
|
| 500 |
-
|
| 501 |
-
<footer class="relative z-10 bg-black bg-opacity-90 border-t border-gray-800 py-12">
|
| 502 |
<div class="container mx-auto px-6">
|
| 503 |
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
|
| 504 |
<div>
|
|
@@ -602,7 +604,7 @@ Get Started
|
|
| 602 |
</div>
|
| 603 |
</div>
|
| 604 |
<!-- Add i18next libraries -->
|
| 605 |
-
|
| 606 |
<script src="https://unpkg.com/i18next-browser-languagedetector/i18nextBrowserLanguageDetector.js"></script>
|
| 607 |
<script src="https://unpkg.com/i18next-http-backend/i18nextHttpBackend.js"></script>
|
| 608 |
|
|
|
|
| 77 |
<a href="events.html" class="text-white hover:text-yellow-500 transition">Events</a>
|
| 78 |
<a href="results.html" class="text-white hover:text-yellow-500 transition">Stress Reliever</a>
|
| 79 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 80 |
<script>
|
| 81 |
// Cart functionality
|
| 82 |
let cart = [];
|
|
|
|
| 348 |
</p>
|
| 349 |
<div class="flex justify-center">
|
| 350 |
<div class="grid grid-cols-1 gap-8 max-w-4xl">
|
| 351 |
+
<!-- Free Trial -->
|
| 352 |
+
<div class="bg-gradient-to-b from-gray-900 to-black p-8 rounded-xl border border-green-500 transform hover:scale-105 transition mx-auto hovered-element">
|
| 353 |
+
<h3 class="text-2xl font-bold text-center mb-4 text-green-500">7-Day Free Trial</h3>
|
| 354 |
+
<div class="text-center mb-6 hovered-element">
|
| 355 |
+
<span class="text-4xl font-bold text-green-500">$0</span>
|
| 356 |
+
<span class="text-gray-400">for 7 days</span>
|
| 357 |
+
</div>
|
| 358 |
+
<ul class="space-y-3 mb-8">
|
| 359 |
+
<li class="flex items-center">
|
| 360 |
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-check text-green-500 mr-2"><polyline points="20 6 9 17 4 12"></polyline></svg>
|
| 361 |
+
<span>Full access to all features</span>
|
| 362 |
+
</li>
|
| 363 |
+
<li class="flex items-center">
|
| 364 |
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-check text-green-500 mr-2"><polyline points="20 6 9 17 4 12"></polyline></svg>
|
| 365 |
+
<span>Unlimited VR/AR scenarios</span>
|
| 366 |
+
</li>
|
| 367 |
+
<li class="flex items-center">
|
| 368 |
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-check text-green-500 mr-2"><polyline points="20 6 9 17 4 12"></polyline></svg>
|
| 369 |
+
<span>Basic biometric analysis</span>
|
| 370 |
+
</li>
|
| 371 |
+
<li class="flex items-center">
|
| 372 |
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-x text-red-500 mr-2"><line x1="18" y1="6" x2="6" y2="18"></line><line x1="6" y1="6" x2="18" y2="18"></line></svg>
|
| 373 |
+
<span class="text-gray-400">No custom scenarios</span>
|
| 374 |
+
</li>
|
| 375 |
+
<li class="flex items-center">
|
| 376 |
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-x text-red-500 mr-2"><line x1="18" y1="6" x2="6" y2="18"></line><line x1="6" y1="6" x2="18" y2="18"></line></svg>
|
| 377 |
+
<span class="text-gray-400">No coaching sessions</span>
|
| 378 |
+
</li>
|
| 379 |
+
</ul>
|
| 380 |
+
<a href="https://portal.veinternational.org/buybuttons/us0110243/btn/free-trial-2/" class="w-full bg-gradient-to-r from-green-600 to-green-800 hover:from-green-500 hover:to-green-700 text-white font-bold py-3 rounded-lg transition flex items-center justify-center">
|
| 381 |
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-zap mr-2"><polygon points="13 2 3 14 12 14 11 22 21 10 12 10 13 2"></polygon></svg> Start Free Trial
|
| 382 |
+
</a>
|
| 383 |
+
</div>
|
| 384 |
<!-- Core Plan -->
|
| 385 |
<div class="bg-gradient-to-b from-gray-900 to-black p-8 rounded-xl border border-yellow-500 transform hover:scale-105 transition mx-auto">
|
| 386 |
<h3 class="text-2xl font-bold text-center mb-4 text-yellow-500">Amplify Core</h3>
|
|
|
|
| 493 |
<p class="text-xl mb-12 max-w-2xl mx-auto text-gray-300">
|
| 494 |
Join thousands of athletes, performers, and professionals who are mastering their minds with our technology.
|
| 495 |
</p>
|
| 496 |
+
<a href="https://portal.veinternational.org/buybuttons/us0110243/btn/free-trial-2/" class="bg-gradient-to-r from-green-600 to-green-800 hover:from-green-500 hover:to-green-700 text-white font-bold px-10 py-5 rounded-lg text-xl transition transform hover:scale-105 shadow-lg mb-4 inline-block">
|
| 497 |
+
Start 7-Day Free Trial
|
| 498 |
</a>
|
| 499 |
+
<p class="text-sm text-gray-400">No credit card required • Cancel anytime</p>
|
| 500 |
</div>
|
| 501 |
</section>
|
| 502 |
+
<!-- Footer -->
|
| 503 |
+
<footer class="relative z-10 bg-black bg-opacity-90 border-t border-gray-800 py-12">
|
|
|
|
| 504 |
<div class="container mx-auto px-6">
|
| 505 |
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
|
| 506 |
<div>
|
|
|
|
| 604 |
</div>
|
| 605 |
</div>
|
| 606 |
<!-- Add i18next libraries -->
|
| 607 |
+
<script src="https://unpkg.com/i18next/dist/umd/i18next.min.js"></script>
|
| 608 |
<script src="https://unpkg.com/i18next-browser-languagedetector/i18nextBrowserLanguageDetector.js"></script>
|
| 609 |
<script src="https://unpkg.com/i18next-http-backend/i18nextHttpBackend.js"></script>
|
| 610 |
|
pricing.html
CHANGED
|
@@ -53,8 +53,11 @@
|
|
| 53 |
<a href="events.html" class="text-white hover:text-yellow-500 transition">Events</a>
|
| 54 |
<a href="results.html" class="text-white hover:text-yellow-500 transition">Stress Reliever</a>
|
| 55 |
</div>
|
| 56 |
-
<div class="flex items-center space-x-
|
| 57 |
-
<
|
|
|
|
|
|
|
|
|
|
| 58 |
<button id="language-button" class="flex items-center space-x-1 bg-black bg-opacity-50 px-3 py-2 rounded-lg border border-yellow-500 hover:bg-yellow-500 hover:text-black transition">
|
| 59 |
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-globe mr-1"><circle cx="12" cy="12" r="10"></circle><line x1="2" y1="12" x2="22" y2="12"></line><path d="M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z"></path></svg>
|
| 60 |
<span id="current-language">EN</span>
|
|
|
|
| 53 |
<a href="events.html" class="text-white hover:text-yellow-500 transition">Events</a>
|
| 54 |
<a href="results.html" class="text-white hover:text-yellow-500 transition">Stress Reliever</a>
|
| 55 |
</div>
|
| 56 |
+
<div class="flex items-center space-x-6">
|
| 57 |
+
<a href="#" class="text-yellow-500 hover:text-yellow-400 transition">
|
| 58 |
+
<i data-feather="shopping-cart"></i>
|
| 59 |
+
</a>
|
| 60 |
+
<div class="relative">
|
| 61 |
<button id="language-button" class="flex items-center space-x-1 bg-black bg-opacity-50 px-3 py-2 rounded-lg border border-yellow-500 hover:bg-yellow-500 hover:text-black transition">
|
| 62 |
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-globe mr-1"><circle cx="12" cy="12" r="10"></circle><line x1="2" y1="12" x2="22" y2="12"></line><path d="M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z"></path></svg>
|
| 63 |
<span id="current-language">EN</span>
|
results.html
CHANGED
|
@@ -60,9 +60,12 @@
|
|
| 60 |
<a href="currency.html" class="text-white hover:text-yellow-500 transition">Currency</a>
|
| 61 |
<a href="events.html" class="text-white hover:text-yellow-500 transition">Events</a>
|
| 62 |
<a href="results.html" class="text-yellow-500 hover:text-yellow-400 transition">Success Stories</a>
|
| 63 |
-
|
| 64 |
-
<div class="flex items-center space-x-
|
| 65 |
-
<
|
|
|
|
|
|
|
|
|
|
| 66 |
<button id="language-button" class="flex items-center space-x-1 bg-black bg-opacity-50 px-3 py-2 rounded-lg border border-yellow-500 hover:bg-yellow-500 hover:text-black transition">
|
| 67 |
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-globe mr-1"><circle cx="12" cy="12" r="10"></circle><line x1="2" y1="12" x2="22" y2="12"></line><path d="M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z"></path></svg>
|
| 68 |
<span id="current-language">EN</span>
|
|
|
|
| 60 |
<a href="currency.html" class="text-white hover:text-yellow-500 transition">Currency</a>
|
| 61 |
<a href="events.html" class="text-white hover:text-yellow-500 transition">Events</a>
|
| 62 |
<a href="results.html" class="text-yellow-500 hover:text-yellow-400 transition">Success Stories</a>
|
| 63 |
+
</div>
|
| 64 |
+
<div class="flex items-center space-x-6">
|
| 65 |
+
<a href="#" class="text-yellow-500 hover:text-yellow-400 transition">
|
| 66 |
+
<i data-feather="shopping-cart"></i>
|
| 67 |
+
</a>
|
| 68 |
+
<div class="relative">
|
| 69 |
<button id="language-button" class="flex items-center space-x-1 bg-black bg-opacity-50 px-3 py-2 rounded-lg border border-yellow-500 hover:bg-yellow-500 hover:text-black transition">
|
| 70 |
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-globe mr-1"><circle cx="12" cy="12" r="10"></circle><line x1="2" y1="12" x2="22" y2="12"></line><path d="M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z"></path></svg>
|
| 71 |
<span id="current-language">EN</span>
|
script.js
CHANGED
|
@@ -1,6 +1,42 @@
|
|
|
|
|
| 1 |
// Shared JavaScript across all pages
|
| 2 |
document.addEventListener('DOMContentLoaded', () => {
|
| 3 |
-
//
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
const starsCount = 200;
|
| 5 |
for (let i = 0; i < starsCount; i++) {
|
| 6 |
const star = document.createElement('div');
|
|
|
|
| 1 |
+
|
| 2 |
// Shared JavaScript across all pages
|
| 3 |
document.addEventListener('DOMContentLoaded', () => {
|
| 4 |
+
// Load Google Translate iframe styles
|
| 5 |
+
const loadTranslateStyles = () => {
|
| 6 |
+
const iframe = document.querySelector('.goog-te-menu-frame');
|
| 7 |
+
if (!iframe) return;
|
| 8 |
+
|
| 9 |
+
const iframeDoc = iframe.contentDocument || iframe.contentWindow.document;
|
| 10 |
+
const style = iframeDoc.createElement('style');
|
| 11 |
+
style.textContent = `
|
| 12 |
+
.goog-te-menu2 {
|
| 13 |
+
font-family: 'Montserrat', sans-serif !important;
|
| 14 |
+
background-color: #111827 !important;
|
| 15 |
+
border: 1px solid #e3b341 !important;
|
| 16 |
+
}
|
| 17 |
+
.goog-te-menu2-item div, .goog-te-menu2-item-selected div {
|
| 18 |
+
color: white !important;
|
| 19 |
+
padding: 8px 16px !important;
|
| 20 |
+
}
|
| 21 |
+
.goog-te-menu2-item-selected {
|
| 22 |
+
background-color: rgba(227, 179, 65, 0.2) !important;
|
| 23 |
+
}
|
| 24 |
+
.goog-te-menu2-item:hover {
|
| 25 |
+
background-color: rgba(227, 179, 65, 0.1) !important;
|
| 26 |
+
}
|
| 27 |
+
`;
|
| 28 |
+
iframeDoc.head.appendChild(style);
|
| 29 |
+
};
|
| 30 |
+
|
| 31 |
+
// Check for Google Translate iframe periodically
|
| 32 |
+
const translateInterval = setInterval(() => {
|
| 33 |
+
if (document.querySelector('.goog-te-menu-frame')) {
|
| 34 |
+
loadTranslateStyles();
|
| 35 |
+
clearInterval(translateInterval);
|
| 36 |
+
}
|
| 37 |
+
}, 100);
|
| 38 |
+
|
| 39 |
+
// Create twinkling stars
|
| 40 |
const starsCount = 200;
|
| 41 |
for (let i = 0; i < starsCount; i++) {
|
| 42 |
const star = document.createElement('div');
|
style.css
CHANGED
|
@@ -87,9 +87,37 @@ body::after {
|
|
| 87 |
box-shadow: 0 10px 25px rgba(139, 92, 246, 0.2);
|
| 88 |
border-color: rgba(139, 92, 246, 0.4);
|
| 89 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 90 |
|
| 91 |
.feature-icon {
|
| 92 |
-
|
| 93 |
height: 60px;
|
| 94 |
margin: 0 auto 16px;
|
| 95 |
display: flex;
|
|
|
|
| 87 |
box-shadow: 0 10px 25px rgba(139, 92, 246, 0.2);
|
| 88 |
border-color: rgba(139, 92, 246, 0.4);
|
| 89 |
}
|
| 90 |
+
/* Google Translate Widget Styles */
|
| 91 |
+
.goog-te-gadget {
|
| 92 |
+
font-family: 'Montserrat', sans-serif !important;
|
| 93 |
+
}
|
| 94 |
+
.goog-te-gadget-simple {
|
| 95 |
+
background-color: transparent !important;
|
| 96 |
+
border: none !important;
|
| 97 |
+
padding: 0 !important;
|
| 98 |
+
}
|
| 99 |
+
.goog-te-menu-value span {
|
| 100 |
+
color: white !important;
|
| 101 |
+
font-size: 14px !important;
|
| 102 |
+
}
|
| 103 |
+
.goog-te-menu-value img {
|
| 104 |
+
display: none !important;
|
| 105 |
+
}
|
| 106 |
+
.goog-te-menu-value:before {
|
| 107 |
+
content: '\f0ac';
|
| 108 |
+
font-family: 'feather' !important;
|
| 109 |
+
color: #e3b341;
|
| 110 |
+
margin-right: 5px;
|
| 111 |
+
}
|
| 112 |
+
.goog-te-menu-value:after {
|
| 113 |
+
content: '\f107';
|
| 114 |
+
font-family: 'feather' !important;
|
| 115 |
+
color: #e3b341;
|
| 116 |
+
margin-left: 5px;
|
| 117 |
+
}
|
| 118 |
|
| 119 |
.feature-icon {
|
| 120 |
+
width: 60px;
|
| 121 |
height: 60px;
|
| 122 |
margin: 0 auto 16px;
|
| 123 |
display: flex;
|