feat: update mobile navigation links to use specific routes with wire:navigate and remove the "Get CV" button.

This commit is contained in:
Yoga Pangestu 2025-12-20 17:50:10 +07:00
parent 71568a7ecd
commit 9cb943e360

View File

@ -89,28 +89,17 @@ class="w-8 h-8 lg:w-10 lg:h-10 flex justify-center items-center rounded-full tra
class="fixed inset-0 h-screen w-screen bg-home-foreground/80 backdrop-blur-md z-40 flex flex-col items-center justify-center gap-8 hidden transition-all duration-200 opacity-0" class="fixed inset-0 h-screen w-screen bg-home-foreground/80 backdrop-blur-md z-40 flex flex-col items-center justify-center gap-8 hidden transition-all duration-200 opacity-0"
aria-label="Mobile Navigation"> aria-label="Mobile Navigation">
<a href="#" class="text-3xl font-bold text-white hover:text-gray-300 transition-colors">Beranda</a> <a href="{{ route('homepage') }}" wire:navigate
<a href="#" class="text-3xl font-bold text-white hover:text-gray-300 transition-colors">Outlet</a> class="text-3xl font-bold text-white hover:text-gray-300 transition-colors">Beranda</a>
<a href="{{ route('outlet') }}" wire:navigate
<div class="flex flex-col items-center gap-4"> class="text-3xl font-bold text-white hover:text-gray-300 transition-colors">Outlet</a>
<span class="text-3xl font-bold text-white">Produk</span> <a href="{{ route('product.index') }}" wire:navigate
<div class="flex gap-4 text-gray-400"> class="text-3xl font-bold text-white hover:text-gray-300 transition-colors">Produk</a>
<a href="#" class="hover:text-white">Parfum</a> <a href="{{ route('voucher') }}"
<span class="text-gray-600"></span>
<a href="#" class="hover:text-white">Botol</a>
<span class="text-gray-600"></span>
<a href="#" class="hover:text-white">Arabian</a>
</div>
</div>
<a wire:click="goToVoucher"
class="text-3xl font-bold text-white hover:text-gray-300 transition-colors cursor-pointer">Voucher</a> class="text-3xl font-bold text-white hover:text-gray-300 transition-colors cursor-pointer">Voucher</a>
<a href="#" class="text-3xl font-bold text-white hover:text-gray-300 transition-colors">Artikel</a> <a href="{{ route('article.index') }}"
<a href="#" class="text-3xl font-bold text-white hover:text-gray-300 transition-colors">FAQ</a> class="text-3xl font-bold text-white hover:text-gray-300 transition-colors">Artikel</a>
<a href="{{ route('faq') }}"
<button class="text-3xl font-bold text-white hover:text-gray-300 transition-colors">FAQ</a>
class="mt-8 px-8 py-3 bg-white text-home-foreground font-bold rounded-full hover:bg-gray-100 transition-all shadow-lg hover:shadow-white/20">
Get CV
</button>
</nav> </nav>
</header> </header>