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 pt-safe">
|
2025-01-16 14:36:37 -05:00
|
|
|
<header class="flex items-center justify-between p-8">
|
|
|
|
<%= link_to content_for(:previous_path) || root_path do %>
|
2025-02-13 11:31:07 -05:00
|
|
|
<%= lucide_icon "arrow-left", class: "w-5 h-5 text-secondary" %>
|
2025-01-16 14:36:37 -05:00
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<nav>
|
|
|
|
<%= yield :header_nav %>
|
|
|
|
</nav>
|
|
|
|
|
|
|
|
<%= link_to content_for(:cancel_path) || root_path do %>
|
2025-02-13 11:31:07 -05:00
|
|
|
<%= lucide_icon "x", class: "text-secondary w-5 h-5" %>
|
2025-01-16 14:36:37 -05:00
|
|
|
<% end %>
|
|
|
|
</header>
|
|
|
|
|
2025-02-12 11:22:30 -05:00
|
|
|
<main class="grow px-8 pt-12 pb-32 overflow-y-auto">
|
2025-01-16 14:36:37 -05:00
|
|
|
<%= yield %>
|
|
|
|
</main>
|
|
|
|
</div>
|
|
|
|
<% end %>
|