akkounts/app/components/app_info_component.html.erb
Râu Cao e4242333d9
All checks were successful
continuous-integration/drone/push Build is passing
Add recommended apps for Chat/XMPP
2023-08-08 19:59:29 +02:00

16 lines
510 B
Plaintext

<div class="flex">
<div class="<%= @icon_container_class %>">
<%= image_tag(@icon_path, class: 'h-full w-full') %>
</div>
<div class="flex-1 px-4">
<h4 class="sm:pt-2 mb-2 text-lg font-bold"><%= @name %></h4>
<p class="leading-snug"><%= @description %></p>
<p class="leading-snug flex flex-wrap gap-3">
<% @links.each do |link| %>
<a href="<%= link[1] %>" target="_blank"
class="flex-0 btn-sm btn-gray"><%= link[0] %></a>
<% end %>
</p>
</div>
</div>