today_ai_weather/app/views/static_pages/home.html.erb

18 lines
677 B
Plaintext
Raw Normal View History

2024-12-30 00:09:54 +08:00
<% provide(:title, "Home") %>
<div class="hero min-h-screen" >
<div class="hero-overlay bg-opacity-60"></div>
<div class="hero-content text-center text-neutral-content">
<div class="max-w-md">
<h1 class="mb-5 text-5xl font-bold">AI Weather Art</h1>
<p class="mb-5">Experience weather through AI-generated artwork for cities around the world.</p>
<div class="flex gap-4 justify-center">
<%= link_to 'Explore by Calendar', "#", class: "btn btn-primary" %>
<%= link_to 'Browse Cities', cities_path, class: "btn btn-secondary" %>
</div>
</div>
</div>
2024-12-30 13:23:22 +08:00
</div>
<%#= link_to image_tag("kitten.jpg", alt:"Kitten", width:"200") %>