style: add sidebar for area nasabah

main
Yuri Dimas 2025-10-17 15:27:15 +07:00
parent 6f7af4a056
commit bd58d66f6c
No known key found for this signature in database
GPG Key ID: 4A421F9108FB5D2C
1 changed files with 27 additions and 0 deletions

View File

@ -95,6 +95,33 @@
</details>
</li>
}
else if (currentArea == "Nasabah")
{
<li>
<a asp-area="Nasabah" asp-controller="Dashboard" asp-action="Index" class="w-full rounded-full @(controller=="Dashboard" ? "menu-active" : "")">
<i class="ph ph-gauge me-2 text-lg"></i>
Dashboard
</a>
</li>
<li>
<a asp-area="Nasabah" asp-controller="Profil" asp-action="Index" class="w-full rounded-full @(controller=="Profil" ? "menu-active" : "")">
<i class="ph ph-user-square me-2 text-lg"></i>
Profil Nasabah
</a>
</li>
<li>
<a class="w-full rounded-full">
<i class="ph ph-house-line me-2 text-lg"></i>
Bank Sampah Saya
</a>
</li>
<li>
<a class="w-full rounded-full">
<i class="ph ph-database me-2 text-lg"></i>
Transaksi Saya
</a>
</li>
}
else
{
}