<% featured_art = @weather_arts.first %>
<% if featured_art&.image&.attached? %>
<%= image_tag featured_art.image, class: "w-full h-full object-cover" %>
<% end %>

Weather Arts Gallery

Discover AI-generated weather art from cities around the world

<% if featured_art %>
Latest from <%= featured_art.city.name %>, <%= featured_art.city.country.name %> <%= featured_art.weather_date.strftime("%B %d, %Y") %>
<% end %>
Showing <%= @weather_arts.total_count %> weather arts <% if @current_region %> from <%= @current_region.name %> <% end %>
<% @weather_arts.each do |art| %>
<% if art.image.attached? %> <%= image_tag art.image, class: "w-full h-full object-cover transform group-hover:scale-105 transition-transform duration-500" %>

<%= art.city.name %>

<%= art.city.country.name %>

<%= art.description %>
<% end %>

<%= art.city.name %>

<%= art.weather_date.strftime("%B %d, %Y") %>

<%= art.temperature %>°C
<%= art.humidity %>% humidity
<%= link_to city_weather_art_path(art.city, art), class: "btn btn-primary btn-sm w-full" do %> View Details <% end %>
<% end %>
<%= render 'shared/pagination', collection: @weather_arts, collection_name: 'weather arts' %>