Footer Navigation Component
A footer navigation component designed in a retro/vintage style inspired by 80s and 90s aesthetics. It features a dark theme support and is fully responsive.
HTML Code
<footer class="bg-gray-800 text-white py-8 mt-10">
<div class="container mx-auto flex flex-col md:flex-row justify-between items-center">
<div class="text-center md:text-left">
<h2 class="text-2xl font-bold mb-2">Stay Connected!</h2>
<p>Follow us on our social media channels:</p>
<div class="flex justify-center md:justify-start mt-4 space-x-4">
<a href="#" class="text-gray-400 hover:text-white">
<img src="https://picsum.photos/30/30?random=1" alt="Facebook" class="rounded-full">
</a>
<a href="#" class="text-gray-400 hover:text-white">
<img src="https://picsum.photos/30/30?random=2" alt="Twitter" class="rounded-full">
</a>
<a href="#" class="text-gray-400 hover:text-white">
<img src="https://picsum.photos/30/30?random=3" alt="Instagram" class="rounded-full">
</a>
</div>
</div>
<nav class="mt-6 md:mt-0">
<ul class="flex flex-col md:flex-row space-x-4">
<li><a href="#" class="hover:text-gray-400 transition">Home</a></li>
<li><a href="#" class="hover:text-gray-400 transition">About</a></li>
<li><a href="#" class="hover:text-gray-400 transition">Services</a></li>
<li><a href="#" class="hover:text-gray-400 transition">Contact</a></li>
</ul>
</nav>
</div>
<div class="text-center mt-6">
<p class="text-gray-500 text-sm">© 2023 Your Company. All rights reserved.</p>
</div>
</footer>
Related Components
3D_Music_Footer_Navigation
A complex 3D-inspired footer navigation component for music/audio platforms, featuring warm neutrals and full responsiveness with dark mode support.
Footer Navigation Component
A responsive footer navigation component designed for a dashboard, featuring a Skeuomorphic style with vibrant colors. It includes navigation links, a logo, and social media icons, with full dark mode support using Tailwind CSS. The design aims for a moderate complexity with interactive hover effects.