style: add page dashboard for Nasabah

main
Yuri Dimas 2025-10-17 15:26:45 +07:00
parent 3b7c054d4d
commit 5a6451d00f
No known key found for this signature in database
GPG Key ID: 4A421F9108FB5D2C
5 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,13 @@
using Microsoft.AspNetCore.Mvc;
namespace BankSampahApp.Areas.Nasabah.Controllers
{
[Area("Nasabah")]
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

@ -0,0 +1,2 @@
@using BankSampahApp
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers

View File

@ -0,0 +1,3 @@
@{
Layout = "/Areas/Shared/Layouts/App/_Layout.cshtml";
}

View File

@ -37,6 +37,8 @@
<ItemGroup>
<Folder Include="Areas\Bsi\Data\" />
<Folder Include="Areas\Bsi\Models\" />
<Folder Include="Areas\Nasabah\Data\" />
<Folder Include="Areas\Nasabah\Models\" />
<Folder Include="Areas\Shared\Layouts\LandingPage\" />
<Folder Include="Areas\Sudin\Data\" />
<Folder Include="Areas\Sudin\Models\" />