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
Footer Navigation Component
A responsive footer navigation component for dashboards with dark theme support, featuring microinteractions on link hovers using triadic colors and complex elements. No JavaScript, only HTML with Tailwind CSS.
Brutalism E-commerce Footer Navigation
A simple, brutalist footer navigation component for e-commerce, with pastel colors and dark mode support.
Footer Navigation Component
A responsive footer navigation component with a dark theme, suitable for a portfolio website. It features a monochromatic color scheme with different shades of a single color, medium complexity with some interactive features, and uses Tailwind CSS for styling, including dark mode support with the dark: prefix.