2025-02-21 11:57:59 -05:00
|
|
|
<div class="w-full space-y-6 pb-24">
|
|
|
|
<header class="space-y-6">
|
|
|
|
<nav class="flex items-center gap-2">
|
|
|
|
<button data-action="sidebar#toggle" class="w-9 h-9 inline-flex rounded-lg items-center justify-center hover:bg-gray-100 cursor-pointer">
|
|
|
|
<%= icon("panel-left", color: "gray") %>
|
|
|
|
</button>
|
|
|
|
|
|
|
|
<span class="text-sm text-gray-500 font-medium">Home</span>
|
|
|
|
|
|
|
|
<%= icon("chevron-right", color: "gray", size: "sm") %>
|
2024-09-10 17:17:10 -04:00
|
|
|
|
2025-02-21 11:57:59 -05:00
|
|
|
<span class="text-gray-900 font-medium text-sm">Dashboard</span>
|
|
|
|
</nav>
|
2024-10-01 10:47:59 -04:00
|
|
|
|
2025-02-21 11:57:59 -05:00
|
|
|
<div class="space-y-1">
|
|
|
|
<h1 class="text-3xl font-medium text-gray-900">Welcome back, <%= Current.user.first_name %></h1>
|
|
|
|
<p class="text-gray-500">Here's what's happening with your money this week</p>
|
2024-10-01 10:47:59 -04:00
|
|
|
</div>
|
2024-04-18 10:32:36 -04:00
|
|
|
</header>
|
2024-09-10 17:17:10 -04:00
|
|
|
|
2025-02-21 11:57:59 -05:00
|
|
|
<section class="bg-white py-4 rounded-xl shadow-border-xs">
|
|
|
|
<%= render partial: "pages/dashboard/net_worth_chart", locals: { series: @balance_sheet.net_worth_series(period: @period), period: @period } %>
|
|
|
|
</section>
|
2024-09-10 17:17:10 -04:00
|
|
|
|
2025-02-21 11:57:59 -05:00
|
|
|
<section>
|
|
|
|
<%= render "pages/dashboard/balance_sheet", balance_sheet: @balance_sheet %>
|
|
|
|
</section>
|
2024-03-06 09:56:59 -05:00
|
|
|
</div>
|