2025-02-21 11:57:59 -05:00
|
|
|
<%= render "layouts/shared/htmldoc" do %>
|
2025-04-18 18:53:10 +05:30
|
|
|
<div class="flex flex-col h-dvh bg-white pt-safe">
|
2024-10-01 10:47:59 -04:00
|
|
|
<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-04-18 18:53:10 +05:30
|
|
|
<main class="grow px-8 md:pt-12 pb-32 overflow-y-auto">
|
|
|
|
<div class="flex md:hidden justify-center w-full">
|
|
|
|
<%= yield :mobile_import_progress %>
|
|
|
|
</div>
|
|
|
|
|
2024-10-01 10:47:59 -04:00
|
|
|
<%= yield %>
|
|
|
|
</main>
|
|
|
|
</div>
|
2024-05-17 09:09:32 -04:00
|
|
|
<% end %>
|