- Update footer layout to improve styling and center alignment - Change header theme control from 'synthwave' to 'light' - Enhance home page layout with hero and background styles - Refactor user sign-up form with better styling and structure - Add copyright notice and responsive design to the footer These changes focus on enhancing the overall user experience with a more modern layout and improved responsiveness across devices. The footer now includes copyright information and a cleaner design, while the sign-up form has additional styling to improve usability.
10 lines
482 B
Plaintext
10 lines
482 B
Plaintext
<footer class="footer footer-center bg-base-200 text-base-content rounded p-10">
|
|
<nav class="grid grid-flow-col gap-4">
|
|
<%= link_to "About", about_url, class: "link link-hover" %>
|
|
<%= link_to "Contact", contact_url, class: "link link-hover" %>
|
|
<a href="https://news.railstutorial.org" class="text-gray-600 hover:text-gray-900">News</a>
|
|
</nav>
|
|
<aside>
|
|
<p>Copyright © <%= Date.current.year %> - All right reserved by ACME Industries Ltd</p>
|
|
</aside>
|
|
</footer> |