mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-24 15:49:39 +02:00
* Remove stale 1.0 import logic and model * Fresh start * Checkpoint before removing nav * First working prototype * Add trade, account, and mint import flows * Basic working version with tests * System tests for each import type * Clean up mappings flow * Clean up PR, refactor stale code, tests * Add back row validations * Row validations * Fix import job test * Fix import navigation * Fix mint import configuration form * Currency preset for new accounts
23 lines
632 B
Text
23 lines
632 B
Text
<%= content_for :content do %>
|
|
<div class="flex flex-col h-dvh">
|
|
<header class="flex items-center justify-between p-8">
|
|
<%= link_to content_for(:previous_path) || imports_path do %>
|
|
<%= lucide_icon "arrow-left", class: "w-5 h-5 text-gray-500" %>
|
|
<% end %>
|
|
|
|
<nav>
|
|
<%= yield :header_nav %>
|
|
</nav>
|
|
|
|
<%= link_to imports_path do %>
|
|
<%= lucide_icon "x", class: "text-gray-500 w-5 h-5" %>
|
|
<% end %>
|
|
</header>
|
|
|
|
<main class="flex-grow px-8 pt-12 pb-32 overflow-y-auto">
|
|
<%= yield %>
|
|
</main>
|
|
</div>
|
|
<% end %>
|
|
|
|
<%= render template: "layouts/application" %>
|