2024-05-17 09:09:32 -04:00
|
|
|
<%= content_for :content do %>
|
2024-10-01 10:47:59 -04:00
|
|
|
<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 %>
|
2025-02-13 11:31:07 -05:00
|
|
|
<%= lucide_icon "arrow-left", class: "w-5 h-5 text-secondary" %>
|
2024-10-01 10:47:59 -04:00
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<nav>
|
|
|
|
<%= yield :header_nav %>
|
|
|
|
</nav>
|
2024-05-17 09:09:32 -04:00
|
|
|
|
2024-10-01 10:47:59 -04:00
|
|
|
<%= link_to imports_path do %>
|
2025-02-13 11:31:07 -05:00
|
|
|
<%= lucide_icon "x", class: "text-secondary w-5 h-5" %>
|
2024-10-01 10:47:59 -04:00
|
|
|
<% end %>
|
|
|
|
</header>
|
|
|
|
|
2025-02-12 11:22:30 -05:00
|
|
|
<main class="grow px-8 pt-12 pb-32 overflow-y-auto">
|
2024-10-01 10:47:59 -04:00
|
|
|
<%= yield %>
|
|
|
|
</main>
|
|
|
|
</div>
|
2024-05-17 09:09:32 -04:00
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<%= render template: "layouts/application" %>
|