<%# Left side - Main thumbnail %>
<%= image_tag @pdfresource.thumbnails.first,
class: "w-full rounded-lg shadow-lg",
alt: @pdfresource.name %>
<%# Right side - Product details %>
<%= @pdfresource.name %>
Maths
Year 1 (5-6yrs)
Contains <%= @pdfresource.pdfs.count %> PDF file<%= 's' if @pdfresource.pdfs.count != 1 %>.
£<%= number_with_precision(@pdfresource.price || 0.00, precision: 2) %>
Product summary
<%= @pdfresource.description %>
<%= button_to "Add to basket", '#',
class: "bg-blue-500 hover:bg-blue-600 text-white font-semibold py-2 px-6 rounded-lg" %>
<%# Bottom thumbnails gallery %>
<% @pdfresource.pdf_snapshots.each do |snapshot| %>
<%= image_tag snapshot,
class: "w-full rounded-lg shadow cursor-pointer hover:opacity-75 transition-opacity",
alt: "PDF preview" %>
<% end %>