67 lines
4.8 KiB
Plaintext
67 lines
4.8 KiB
Plaintext
@using InfiniLore.Lucide
|
|
@addTagHelper *, InfiniLore.Lucide
|
|
|
|
<div id="mega-menu-2" class="hidden absolute left-0 w-full bg-white shadow-xl border-t border-orange-200 transition-all duration-300 z-40">
|
|
<div class="max-w-7xl mx-auto px-4 py-6">
|
|
<div class="grid grid-cols-1 md:grid-cols-3 gap-4">
|
|
<a href="@Url.Action("Organisasi", "Profil")" class="flex flex-col items-center p-4 rounded-lg hover:bg-orange-50 transition-all duration-300 group text-center">
|
|
<div class="w-12 h-12 rounded-lg bg-gradient-to-br from-orange-500 to-orange-600 flex items-center justify-center shadow group-hover:scale-110 transition-transform duration-300 mb-3">
|
|
<i class="w-6 h-6 text-white" data-lucide="users"></i>
|
|
</div>
|
|
<div class="font-medium text-gray-900 group-hover:text-orange-700 transition-colors duration-300 mb-1">Struktur Organisasi</div>
|
|
<p class="text-xs text-gray-500 group-hover:text-gray-600 leading-tight">Susunan organisasi DLH</p>
|
|
</a>
|
|
|
|
<a href="@Url.Action("Bidang", "Profil")" class="flex flex-col items-center p-4 rounded-lg hover:bg-orange-50 transition-all duration-300 group text-center">
|
|
<div class="w-12 h-12 rounded-lg bg-gradient-to-br from-orange-500 to-orange-600 flex items-center justify-center shadow group-hover:scale-110 transition-transform duration-300 mb-3">
|
|
<i class="w-6 h-6 text-white" data-lucide="building-2"></i>
|
|
</div>
|
|
<div class="font-medium text-gray-900 group-hover:text-orange-700 transition-colors duration-300 mb-1">Bidang & UPT</div>
|
|
<p class="text-xs text-gray-500 group-hover:text-gray-600 leading-tight">Informasi bidang kerja & unit pelaksana teknis DLH</p>
|
|
</a>
|
|
|
|
<a href="@Url.Action("Tupoksi", "Profil")" class="flex flex-col items-center p-4 rounded-lg hover:bg-orange-50 transition-all duration-300 group text-center">
|
|
<div class="w-12 h-12 rounded-lg bg-gradient-to-br from-orange-500 to-orange-600 flex items-center justify-center shadow group-hover:scale-110 transition-transform duration-300 mb-3">
|
|
<i class="w-6 h-6 text-white" data-lucide="clipboard-list"></i>
|
|
</div>
|
|
<div class="font-medium text-gray-900 group-hover:text-orange-700 transition-colors duration-300 mb-1">Tupoksi</div>
|
|
<p class="text-xs text-gray-500 group-hover:text-gray-600 leading-tight">Tugas pokok dan fungsi DLH</p>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script>
|
|
// Define mobile template for Profil menu
|
|
window.profilMobileContent = `
|
|
<div class="space-y-3 max-h-[60vh] overflow-y-auto pb-4" style="scrollbar-width: thin; scrollbar-color: #f97316 #f3f4f6;">
|
|
<a href="@Url.Action("Organisasi", "Profil")" class="flex items-center gap-4 p-4 bg-gradient-to-r from-orange-50 to-orange-100 rounded-xl hover:from-orange-100 hover:to-orange-200 transition-all duration-300 active:scale-95">
|
|
<div class="w-12 h-12 bg-gradient-to-br from-orange-500 to-orange-600 rounded-xl flex items-center justify-center shadow-lg">
|
|
<i class="w-6 h-6 text-white" data-lucide="users"></i>
|
|
</div>
|
|
<div>
|
|
<span class="font-medium text-gray-900">Struktur Organisasi</span>
|
|
<p class="text-sm text-gray-600">Susunan organisasi DLH</p>
|
|
</div>
|
|
</a>
|
|
<a href="@Url.Action("Bidang", "Profil")" class="flex items-center gap-4 p-4 bg-gradient-to-r from-orange-50 to-orange-100 rounded-xl hover:from-orange-100 hover:to-orange-200 transition-all duration-300 active:scale-95">
|
|
<div class="w-12 h-12 bg-gradient-to-br from-orange-500 to-orange-600 rounded-xl flex items-center justify-center shadow-lg">
|
|
<i class="w-6 h-6 text-white" data-lucide="building-2"></i>
|
|
</div>
|
|
<div>
|
|
<span class="font-medium text-gray-900">Bidang & UPT</span>
|
|
<p class="text-sm text-gray-600">Informasi bidang kerja</p>
|
|
</div>
|
|
</a>
|
|
<a href="@Url.Action("Tupoksi", "Profil")" class="flex items-center gap-4 p-4 bg-gradient-to-r from-orange-50 to-orange-100 rounded-xl hover:from-orange-100 hover:to-orange-200 transition-all duration-300 active:scale-95">
|
|
<div class="w-12 h-12 bg-gradient-to-br from-orange-500 to-orange-600 rounded-xl flex items-center justify-center shadow-lg">
|
|
<i class="w-6 h-6 text-white" data-lucide="clipboard-list"></i>
|
|
</div>
|
|
<div>
|
|
<span class="font-medium text-gray-900">Tupoksi</span>
|
|
<p class="text-sm text-gray-600">Tugas pokok dan fungsi</p>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
`;
|
|
</script> |