style: add dashboard for role BSI

main
Yuri Dimas 2025-10-17 13:26:05 +07:00
parent ea6e86b6bf
commit 4d5a296e43
No known key found for this signature in database
GPG Key ID: 4A421F9108FB5D2C
3 changed files with 25 additions and 1 deletions

View File

@ -0,0 +1,13 @@
using Microsoft.AspNetCore.Mvc;
namespace BankSampahApp.Areas.Bsi.Controllers
{
[Area("Bsi")]
public class DashboardController : Controller
{
public IActionResult Index()
{
return View();
}
}
}

View File

@ -0,0 +1,11 @@
@{
ViewData["Title"] = "Dashboard";
}
<div class="flex flex-col gap-2 md:flex-row md:justify-between md:gap-0">
<div class="prose">
<span class="text-xl font-semibold text-black">
Dashboard
</span>
</div>
</div>

View File

@ -53,7 +53,7 @@
else if (currentArea == "Bsi")
{
<li>
<a href="#" class="w-full rounded-full">
<a asp-area="Bsi" asp-controller="Dashboard" asp-action="Index" class="w-full rounded-full">
<i class="ph ph-gauge me-2 text-lg"></i>
Dashboard
</a>