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

Where Weather Meets
Artificial Intelligence

Experience weather through the lens of AI-generated art, bringing a new perspective to daily meteorological phenomena.

<%= link_to "Explore Cities", cities_path, class: "btn btn-primary btn-lg mt-8 font-sans" %>

Shuffle Latest Weather Art

<% @latest_arts.each do |art| %>
<% if art.image.attached? %> <%= image_tag art.image, class: "w-full h-full object-cover transform hover:scale-105 transition-transform duration-500" %> <% end %>

<%= art.city.name %>

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

<%= art.temperature %>°C
<%= art.description %>
<%= link_to "View Details", city_weather_art_path(art.city, art), class: "btn btn-primary btn-outline" %>
<% end %>
<%= link_to arts_path, class: "btn btn-primary btn-lg gap-2" do %> View All Weather Arts <% end %>