20 lines
715 B
Plaintext
20 lines
715 B
Plaintext
<% content_for :title, "Products" %>
|
|
|
|
<div class="w-full">
|
|
<% if notice.present? %>
|
|
<p class="py-2 px-3 bg-green-50 mb-5 text-green-500 font-medium rounded-md inline-block" id="notice"><%= notice %></p>
|
|
<% end %>
|
|
<h1 class="text-4xl font-bold text-center">Products</h1>
|
|
<div id="products" class="min-w-full grid grid-cols-4 ">
|
|
<% if @products.any? %>
|
|
<% @products.each do |product| %>
|
|
<div class="flex flex-col sm:flex-row justify-between items-center pb-5 sm:pb-0 hover:scale-105 transition-transform duration-300">
|
|
<%= render product %>
|
|
</div>
|
|
<% end %>
|
|
<% else %>
|
|
<p class="text-center my-10">No products found.</p>
|
|
<% end %>
|
|
</div>
|
|
</div>
|