songtianlun
81843f0c08
- Deleted the `add_jquery.js` file as jQuery is no longer needed. - Removed references to Bootstrap from the Gemfile and package.json. - Updated the application layout to reflect the removal of Bootstrap styles. - Adjusted the paginator HTML to use a class that aligns with the new styling. These changes streamline the asset pipeline by eliminating unused libraries, which can improve load times and reduce potential security vulnerabilities. The application now relies on alternative styling and JavaScript solutions.
16 lines
502 B
Plaintext
16 lines
502 B
Plaintext
<% 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 Today Ai Weather</h1>
|
|
<p class="py-6">
|
|
This is the home page for the
|
|
Today Ai Weather application.
|
|
</p>
|
|
<%= link_to "Sing up now!", signup_path, class:"btn btn-lg btn-primary" %>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<%#= link_to image_tag("kitten.jpg", alt:"Kitten", width:"200") %>
|