2025-02-21 11:57:59 -05:00
|
|
|
<%# locals: (name:, path:, icon_key:) %>
|
|
|
|
|
2025-04-09 12:42:46 -04:00
|
|
|
<%= link_to path, class: "space-y-1 lg:py-1 group block" do %>
|
|
|
|
<div class="grow flex flex-col lg:flex-row gap-1 items-center">
|
2025-04-11 09:28:00 -05:00
|
|
|
<%= tag.div class: class_names("w-4 h-1 lg:w-1 lg:h-4 rounded-bl-sm rounded-br-sm lg:rounded-tr-sm lg:rounded-br-sm lg:rounded-bl-none", "bg-container-inset" => page_active?(path)) %>
|
2025-02-21 11:57:59 -05:00
|
|
|
|
2025-04-11 09:28:00 -05:00
|
|
|
<%= tag.div class: class_names("w-8 h-8 flex items-center justify-center mx-auto rounded-lg", page_active?(path) ? "bg-container-inset shadow-xs text-primary" : "group-hover:bg-container-inset-hover text-secondary") do %>
|
2025-02-21 11:57:59 -05:00
|
|
|
<%= icon(icon_key) %>
|
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="grow pl-2">
|
|
|
|
<%= tag.p class: class_names("text-center font-medium text-[11px]", page_active?(path) ? "text-primary" : "text-secondary") do %>
|
|
|
|
<%= name %>
|
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
<% end %>
|