<% content_for :title, "Products" %>
<% if notice.present? %>

<%= notice %>

<% end %>

Products

<%= link_to "New product", new_product_path, class: "rounded-md px-3.5 py-2.5 bg-blue-600 hover:bg-blue-500 text-white block font-medium" %>
<% if @products.any? %> <% @products.each do |product| %> <%= render product %>

<%= link_to "Show this product", product, class: "ml-2 rounded-md px-3.5 py-2.5 bg-gray-100 hover:bg-gray-50 inline-block font-medium" %>

<% end %> <% else %>

No products found.

<% end %>