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 simple footer navigation component designed in Glassmorphism style with a monochromatic color scheme. It is responsive, supports dark mode, and is suitable for e-commerce websites.
Footer Navigation Component
A responsive Footer Navigation component designed with a skeuomorphic style, featuring interactive elements suitable for e-commerce. It follows a triadic color scheme and supports dark mode.
Glassmorphism Footer Navigation
Footer navigation component with Glassmorphism style, vibrant color scheme, and complex layout for dashboard purposes. Responsive design with dark mode support using Tailwind CSS.