Skip to content

Commit

Permalink
feat: Add footer Blade component with Tailwind CSS
Browse files Browse the repository at this point in the history
  • Loading branch information
sweep-ai[bot] committed Mar 10, 2024
1 parent 626bb3e commit 26edacc
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions resources/views/components/footer.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<footer class="bg-gray-800 text-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-4">
<div class="flex justify-between items-center">
<div>
<a href="/" class="text-lg font-semibold">Liberu Genealogy</a>
</div>
<nav>
<ul class="flex space-x-4">
<li><a href="/about" class="hover:text-gray-300">About Us</a></li>
<li><a href="/services" class="hover:text-gray-300">Services</a></li>
<li><a href="/contact" class="hover:text-gray-300">Contact</a></li>
</ul>
</nav>
</div>
<div class="text-center py-4">
<p>&copy; {{ date('Y') }} Liberu Genealogy. All rights reserved.</p>
</div>
</div>
</footer>

0 comments on commit 26edacc

Please sign in to comment.