Social Share Buttons Component
A simple, responsive, 3D grayscale social share button component for dashboards with dark mode support.
HTML Code
<div class="flex items-center justify-center min-h-screen bg-gray-100 dark:bg-gray-900">
<div class="grid grid-cols-2 sm:grid-cols-4 gap-4 p-4">
<!-- Facebook -->
<a href="#" class="relative flex items-center justify-center p-4 bg-gray-300 dark:bg-gray-700 rounded-lg shadow-lg transform transition-transform duration-300 hover:scale-105 group">
<div class="absolute inset-0 bg-gray-400 dark:bg-gray-600 rounded-lg transform translate-x-1 translate-y-1 group-hover:translate-x-0 group-hover:translate-y-0 transition-transform duration-300"></div>
<div class="relative text-gray-800 dark:text-gray-200 font-bold text-2xl z-10">F</div>
</a>
<!-- Twitter -->
<a href="#" class="relative flex items-center justify-center p-4 bg-gray-300 dark:bg-gray-700 rounded-lg shadow-lg transform transition-transform duration-300 hover:scale-105 group">
<div class="absolute inset-0 bg-gray-400 dark:bg-gray-600 rounded-lg transform translate-x-1 translate-y-1 group-hover:translate-x-0 group-hover:translate-y-0 transition-transform duration-300"></div>
<div class="relative text-gray-800 dark:text-gray-200 font-bold text-2xl z-10">T</div>
</a>
<!-- LinkedIn -->
<a href="#" class="relative flex items-center justify-center p-4 bg-gray-300 dark:bg-gray-700 rounded-lg shadow-lg transform transition-transform duration-300 hover:scale-105 group">
<div class="absolute inset-0 bg-gray-400 dark:bg-gray-600 rounded-lg transform translate-x-1 translate-y-1 group-hover:translate-x-0 group-hover:translate-y-0 transition-transform duration-300"></div>
<div class="relative text-gray-800 dark:text-gray-200 font-bold text-2xl z-10">in</div>
</a>
<!-- Instagram -->
<a href="#" class="relative flex items-center justify-center p-4 bg-gray-300 dark:bg-gray-700 rounded-lg shadow-lg transform transition-transform duration-300 hover:scale-105 group">
<div class="absolute inset-0 bg-gray-400 dark:bg-gray-600 rounded-lg transform translate-x-1 translate-y-1 group-hover:translate-x-0 group-hover:translate-y-0 transition-transform duration-300"></div>
<div class="relative text-gray-800 dark:text-gray-200 font-bold text-2xl z-10">I</div>
</a>
</div>
</div>
Related Components
Social Share Buttons Component 51
A responsive social share buttons component designed with skeuomorphic design principles, featuring buttons that mimic real-world objects and support for dark theme. The component is styled using Tailwind CSS and includes placeholder images from picsum.photos and avatars from randomuser.me.
Social Share Buttons Component
A responsive social share buttons component styled with glassmorphism effects, supporting both light and dark themes.
Social Share Buttons Component
A responsive social share buttons component designed with skeuomorphic style in grayscale for blog content consumption. Includes dark mode support.