Файловый менеджер - Редактировать - /home/gqdcvggs/go.imators.com/andweare.com.tar
Назад
header.php 0000664 00000002361 15114726164 0006520 0 ustar 00 <header class="fixed top-0 left-0 w-full z-50 px-4 py-4"> <div class="max-w-7xl mx-auto"> <div class="bg-white/90 backdrop-blur-md rounded-lg py-3 px-6 flex items-center justify-between"> <a href="/" class="flex items-center"> <img src="logo_transparent.jpeg" alt="AndWeare Logo" class="h-8 w-auto"> </a> <nav class="flex items-center"> <a href="https://imators.com/support" class="text-gray-600 hover:text-gray-900 transition-colors">Support</a> <span class="mx-2"></span> <a href="./why" class="text-gray-600 hover:text-gray-900 transition-colors">Why?</a> <a href="/hub" class="hidden md:block bg-black text-white rounded-full px-5 py-2 hover:bg-gray-800 transition-colors ml-8">Get Started</a> </nav> </div> </div> </header> <script> window.addEventListener('scroll', function() { const header = document.querySelector('header'); if (window.scrollY > 50) { header.classList.add('py-2'); header.classList.remove('py-4'); } else { header.classList.add('py-4'); header.classList.remove('py-2'); } }); </script>