- Improve the user registration form layout with card styling. - Add input classes for better design consistency. - Introduce a new navbar partial for better component management. - Removed the old navbar code to streamline application layout. These changes provide a more modern and user-friendly experience during user registration and improve the overall site's navigation structure.
13 lines
498 B
Plaintext
13 lines
498 B
Plaintext
<div class="navbar bg-base-100/80 backdrop-blur-sm fixed top-0 z-50">
|
|
<div class="container mx-auto">
|
|
<div class="flex-1">
|
|
<%= link_to root_path, class: "text-2xl font-display font-bold hover:text-primary transition-colors" do %>
|
|
Today AI Weather
|
|
<% end %>
|
|
</div>
|
|
<div class="flex-none">
|
|
<%= link_to "Cities", cities_path, class: "btn btn-ghost font-sans" %>
|
|
<%= link_to "Arts", arts_path, class: "btn btn-ghost font-sans" %>
|
|
</div>
|
|
</div>
|
|
</div> |