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 %>
|
|
|
|
<%= lucide_icon "arrow-left", class: "w-5 h-5 text-gray-500" %>
|
|
|
|
<% 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 %>
|
|
|
|
<%= 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>
|
2024-05-17 09:09:32 -04:00
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<%= render template: "layouts/application" %>
|