Explore Cities

Discover AI-generated weather art from cities around the world

<% @cities.each do |city| %> <% latest_art = city.weather_arts.last %>
<% if latest_art&.image&.attached? %>
<%= image_tag latest_art.image, class: "w-full h-full object-cover transform group-hover:scale-105 transition-transform duration-500" %>
<% end %>

<%= city.localized_name %>

Lat: <%= city.latitude %>

Long: <%= city.longitude %>

<%= link_to "View Weather Art", city_path(city), class: "btn btn-primary" %>
<% end %>