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

21 lines
685 B
Plaintext
Raw Normal View History

2024-12-30 00:09:54 +08:00
<% provide(:title, "Home") %>
<div class="hero bg-base-200 min-h-screen">
<div class="hero-content text-center">
<div class="max-w-md">
<h1 class="text-5xl font-bold">Welcome to the Sample App</h1>
<p class="py-6">
This is the home page for the
<a href="https://www.railstutorial.org">Ruby on Rails Tutorial</a>
Sample application.
</p>
<%= link_to "Sing up now!", signup_path, class:"btn btn-lg btn-primary" %>
<%= link_to image_tag("rails.svg", alt:"Rails logo", width: "200"),
"https://rubyonrails.org/" %>
</div>
</div>
2024-12-30 13:23:22 +08:00
</div>
<%#= link_to image_tag("kitten.jpg", alt:"Kitten", width:"200") %>
2024-12-30 13:23:22 +08:00
2024-12-30 00:09:54 +08:00