mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-08-10 07:55:21 +02:00
Since the very first 0.1.0-alpha.1 release, we've been moving quickly to add new features to the Maybe app. In doing so, some parts of the codebase have become outdated, unnecessary, or overly-complex as a natural result of this feature prioritization. Now that "core" Maybe is complete, we're moving into a second phase of development where we'll be working hard to improve the accuracy of existing features and build additional features on top of "core". This PR is a quick overhaul of the existing codebase aimed to: - Establish the brand new and simplified dashboard view (pictured above) - Establish and move towards the conventions introduced in Cursor rules and project design overview #1788 - Consolidate layouts and improve the performance of layout queries - Organize the core models of the Maybe domain (i.e. Account::Entry, Account::Transaction, etc.) and break out specific traits of each model into dedicated concerns for better readability - Remove stale / dead code from codebase - Remove overly complex code paths in favor of simpler ones
28 lines
1.1 KiB
Text
28 lines
1.1 KiB
Text
<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") %>
|
|
|
|
<span class="text-gray-900 font-medium text-sm">Dashboard</span>
|
|
</nav>
|
|
|
|
<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>
|
|
</div>
|
|
</header>
|
|
|
|
<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>
|
|
|
|
<section>
|
|
<%= render "pages/dashboard/balance_sheet", balance_sheet: @balance_sheet %>
|
|
</section>
|
|
</div>
|