Weather Arts Gallery

Explore our collection of AI-generated weather art from cities around the world

<% @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.weather_date.strftime("%B %d, %Y") %>

<%= art.temperature %>°C, <%= art.description %>

<% end %>

<%= art.city.name %>

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

<%= art.temperature %>°C
<%= art.weather_date.strftime("%b %d") %>
<%= link_to city_weather_art_path(art.city, art), class: "btn btn-ghost btn-sm w-full mt-3" do %> View Details <% end %>
<% end %>
<%= link_to_prev_page @weather_arts, 'Previous', class: "btn btn-outline #{'btn-disabled' unless @weather_arts.prev_page}" %> <%= link_to_next_page @weather_arts, 'Next', class: "btn btn-outline #{'btn-disabled' unless @weather_arts.next_page}" %>