Footer Component
A Footer component designed in a Neumorphism style, supporting responsive effects and dark themes using Tailwind CSS.
HTML Code
<footer class="bg-gray-200 dark:bg-gray-800 p-6 rounded-lg shadow-lg">
<div class="container mx-auto">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="mb-4 md:mb-0">
<h5 class="text-lg font-semibold text-gray-800 dark:text-gray-200">About Us</h5>
<p class="text-gray-600 dark:text-gray-400">We are dedicated to providing the best service to our customers.</p>
</div>
<div class="mb-4 md:mb-0">
<h5 class="text-lg font-semibold text-gray-800 dark:text-gray-200">Follow Us</h5>
<div class="flex space-x-4">
<a href="#" class="text-gray-600 dark:text-gray-400 hover:text-gray-800 dark:hover:text-gray-200">Facebook</a>
<a href="#" class="text-gray-600 dark:text-gray-400 hover:text-gray-800 dark:hover:text-gray-200">Twitter</a>
<a href="#" class="text-gray-600 dark:text-gray-400 hover:text-gray-800 dark:hover:text-gray-200">Instagram</a>
</div>
</div>
<div class="mb-4 md:mb-0">
<h5 class="text-lg font-semibold text-gray-800 dark:text-gray-200">Contact Us</h5>
<p class="text-gray-600 dark:text-gray-400">Email: [email protected]</p>
</div>
<div class="hidden md:block">
<img src="https://picsum.photos/50" alt="Placeholder" class="rounded-full w-10 h-10" />
</div>
</div>
<div class="text-center mt-6">
<p class="text-gray-600 dark:text-gray-400">© 2023 Company. All Rights Reserved.</p>
</div>
</div>
</footer>
Related Components
3D Analogous Simple Blog Footer
Responsive Footer Component with Dark Theme Support using Tailwind CSS. The footer has a simple 3D design with analogous colors. It is optimized for blog/content websites.
Social Media Footer Component
A responsive footer component for social networking interfaces, designed with Material Design principles using a monochromatic blue color scheme. It features grid-based layouts, depth effects (shadows), hover and transition animations for interactive elements, a newsletter subscription form, social icons, user avatars, and dark mode support via Tailwind's dark: modifier.