<%# locals: path, direction, title %> <%= link_to path, class: "w-full bg-white hover:bg-gray-50 rounded-xl border border-alpha-black-25 shadow-xs p-4 flex items-center justify-between" do %> <% if direction == 'previous' %>
<%= lucide_icon("arrow-left") %>
<% end %>
<%= "text-right" if direction == "previous" %>"> <%= t(".#{direction}") %> <%= title %>
<% if direction == 'next' %>
<%= lucide_icon("arrow-right") %>
<% end %> <% end %>