mirror of
https://github.com/we-promise/sure.git
synced 2026-04-09 15:24:48 +00:00
* [claudesquad] update from 'component-namespacing' on 18 Jul 25 07:23 EDT * [claudesquad] update from 'component-namespacing' on 18 Jul 25 07:30 EDT * Update stimulus controller references to use namespace * Fix remaining tests
30 lines
718 B
Plaintext
30 lines
718 B
Plaintext
<%= render "layouts/shared/htmldoc" do %>
|
|
<div class="flex flex-col h-full bg-container">
|
|
<header class="flex items-center justify-between p-8">
|
|
<%= render DS::Link.new(
|
|
variant: "icon",
|
|
icon: "arrow-left",
|
|
href: content_for(:previous_path) || imports_path
|
|
) %>
|
|
|
|
<nav>
|
|
<%= yield :header_nav %>
|
|
</nav>
|
|
|
|
<%= render DS::Link.new(
|
|
variant: "icon",
|
|
icon: "x",
|
|
href: imports_path
|
|
) %>
|
|
</header>
|
|
|
|
<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>
|
|
|
|
<%= yield %>
|
|
</main>
|
|
</div>
|
|
<% end %>
|