Footer Navigation Component
Footer Navigation Component with Dark Mode and Responsive Effects
HTML Code
<footer class="bg-gray-900 text-gray-300 py-8">
<div class="container mx-auto px-4">
<div class="flex flex-wrap justify-between items-center">
<div class="w-full md:w-1/4 mb-4 md:mb-0">
<h3 class="text-lg font-semibold text-white mb-2">Company</h3>
<ul>
<li><a href="#" class="hover:text-white">About Us</a></li>
<li><a href="#" class="hover:text-white">Careers</a></li>
<li><a href="#" class="hover:text-white">Press</a></li>
</ul>
</div>
<div class="w-full md:w-1/4 mb-4 md:mb-0">
<h3 class="text-lg font-semibold text-white mb-2">Products</h3>
<ul>
<li><a href="#" class="hover:text-white">Features</a></li>
<li><a href="#" class="hover:text-white">Pricing</a></li>
<li><a href="#" class="hover:text-white">Integrations</a></li>
</ul>
</div>
<div class="w-full md:w-1/4 mb-4 md:mb-0">
<h3 class="text-lg font-semibold text-white mb-2">Support</h3>
<ul>
<li><a href="#" class="hover:text-white">Help Center</a></li>
<li><a href="#" class="hover:text-white">API Status</a></li>
<li><a href="#" class="hover:text-white">Contact Us</a></li>
</ul>
</div>
<div class="w-full md:w-1/4">
<h3 class="text-lg font-semibold text-white mb-2">Legal</h3>
<ul>
<li><a href="#" class="hover:text-white">Privacy Policy</a></li>
<li><a href="#" class="hover:text-white">Terms of Service</a></li>
</ul>
</div>
</div>
<div class="mt-8 border-t border-gray-700 pt-4 flex flex-col md:flex-row items-center justify-between">
<p>© 2023 Your Company. All rights reserved.</p>
<div class="flex space-x-4 mt-4 md:mt-0">
<a href="#" class="hover:text-white"><i class="fab fa-facebook"></i></a>
<a href="#" class="hover:text-white"><i class="fab fa-twitter"></i></a>
<a href="#" class="hover:text-white"><i class="fab fa-instagram"></i></a>
</div>
</div>
</div>
</footer>
Related Components
Footer Navigation Component
A responsive and complex Neumorphism-styled Footer Navigation Component for corporate websites using a grayscale color scheme with dark mode support. No JavaScript.
Retro/Vintage E-commerce Footer
Retro/Vintage Footer Navigation Component with Earth tones, simple layout, responsive design, and dark theme support, for E-commerce.
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.