2025-02-25 10:14:07 -06:00
|
|
|
<% content_for :page_header do %>
|
|
|
|
<div class="space-y-1 mb-6">
|
|
|
|
<h1 class="text-3xl font-medium text-gray-900">Welcome back, <%= Current.user.first_name %></h1>
|
2025-02-25 17:28:40 -05:00
|
|
|
<p class="text-gray-500">Here's what's happening with your finances</p>
|
2025-02-25 10:14:07 -06:00
|
|
|
</div>
|
|
|
|
<% end %>
|
2024-09-10 17:17:10 -04:00
|
|
|
|
2025-02-25 10:14:07 -06:00
|
|
|
<div class="w-full space-y-6 pb-24">
|
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>
|