Footer Component
A minimalist footer component with complementary colors, moderate complexity, and social media integration. Features responsive design and dark mode support.
HTML Code
<footer class="bg-gray-100 dark:bg-gray-900 py-8">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex flex-wrap justify-between items-center">
<div class="w-full md:w-1/3 text-center md:text-left mb-4 md:mb-0">
<p class="text-gray-600 dark:text-gray-400 text-sm">© 2023 SocialApp. All rights reserved.</p>
</div>
<div class="w-full md:w-1/3 flex justify-center mb-4 md:mb-0">
<ul class="flex space-x-6">
<li><a href="#" class="text-blue-600 dark:text-orange-400 hover:text-blue-800 dark:hover:text-orange-500 text-sm">Privacy Policy</a></li>
<li><a href="#" class="text-blue-600 dark:text-orange-400 hover:text-blue-800 dark:hover:text-orange-500 text-sm">Terms of Service</a></li>
</ul>
</div>
<div class="w-full md:w-1/3 flex justify-center md:justify-end">
<ul class="flex space-x-4">
<li><a href="#" class="text-blue-600 dark:text-orange-400 hover:text-blue-800 dark:hover:text-orange-500"><i class="fab fa-facebook-f"></i></a></li>
<li><a href="#" class="text-blue-600 dark:text-orange-400 hover:text-blue-800 dark:hover:text-orange-500"><i class="fab fa-twitter"></i></a></li>
<li><a href="#" class="text-blue-600 dark:text-orange-400 hover:text-blue-800 dark:hover:text-orange-500"><i class="fab fa-instagram"></i></a></li>
<li><a href="#" class="text-blue-600 dark:text-orange-400 hover:text-blue-800 dark:hover:text-orange-500"><i class="fab fa-linkedin-in"></i></a></li>
</ul>
</div>
</div>
</div>
</footer>
Related Components
Retro Blog Footer
A retro/vintage footer component for a blog with monochromatic color scheme, simple layout, responsive design, and dark theme support.
Corporate Booking Footer
A complex, responsive corporate footer component designed for booking/reservation systems, featuring warm neutrals and dark mode support, using semantic HTML and Tailwind CSS.
Luxury_Pastel_Government_Footer
An elegant, responsive footer component for government or public service websites, featuring a luxurious design with a pastel color scheme and dark mode support. Includes navigation links, contact info, social media, and copyright.