Neumorphic Footer Component
A Neumorphic styled footer component for social media interfaces with vibrant colors and a complex layout, supporting dark mode.
HTML Code
<footer class="bg-white dark:bg-gray-800 p-6 rounded-lg shadow-lg dark:shadow-2xl">
<div class="flex flex-col items-center">
<div class="flex space-x-6 mb-4">
<a href="#" class="bg-blue-500 dark:bg-blue-700 text-white p-2 rounded-full shadow-md hover:shadow-lg transition transform hover:scale-105">
<img src="https://picsum.photos/50?random=1" alt="Facebook" class="h-8 w-8 rounded-full">
</a>
<a href="#" class="bg-blue-400 dark:bg-blue-600 text-white p-2 rounded-full shadow-md hover:shadow-lg transition transform hover:scale-105">
<img src="https://picsum.photos/50?random=2" alt="Twitter" class="h-8 w-8 rounded-full">
</a>
<a href="#" class="bg-red-500 dark:bg-red-700 text-white p-2 rounded-full shadow-md hover:shadow-lg transition transform hover:scale-105">
<img src="https://picsum.photos/50?random=3" alt="Instagram" class="h-8 w-8 rounded-full">
</a>
<a href="#" class="bg-purple-500 dark:bg-purple-700 text-white p-2 rounded-full shadow-md hover:shadow-lg transition transform hover:scale-105">
<img src="https://picsum.photos/50?random=4" alt="LinkedIn" class="h-8 w-8 rounded-full">
</a>
</div>
<p class="text-gray-700 dark:text-gray-300 text-sm mb-2">© 2023 Your Company</p>
<p class="text-gray-500 dark:text-gray-400 text-xs">Follow us on social media!</p>
</div>
</footer>
Related Components
Luxury_Premium_Crypto_Footer
An elegant, responsive footer component for cryptocurrency/blockchain applications, featuring a limited number of links, copyright, and social media icons. Uses a corporate blue color scheme with dark mode support.
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.
Retro Blog Footer
A retro/vintage footer component for a blog with monochromatic color scheme, simple layout, responsive design, and dark theme support.