Social Components Component
A social component for a dashboard with a brutalist and pastel design. It displays a user profile with a name, title, and avatar, and includes buttons for social actions like following, messaging, and sharing. The component is responsive and supports dark mode.
HTML Code
<div class="bg-pink-200 dark:bg-purple-900 p-6 rounded-lg shadow-xl border-2 border-black">
<div class="flex items-center">
<img class="w-16 h-16 rounded-full border-2 border-black" src="https://randomuser.me/api/portraits/men/75.jpg" alt="User Avatar">
<div class="ml-4">
<h2 class="text-xl font-bold text-gray-900 dark:text-gray-100">John Doe</h2>
<p class="text-gray-700 dark:text-gray-300">Lead brutalist designer</p>
</div>
</div>
<div class="mt-6 grid grid-cols-3 gap-4">
<button class="bg-blue-400 hover:bg-blue-500 text-black py-2 px-4 rounded-none border-2 border-black dark:bg-blue-600 dark:hover:bg-blue-700 dark:text-white">Follow</button>
<button class="bg-green-400 hover:bg-green-500 text-black py-2 px-4 rounded-none border-2 border-black dark:bg-green-600 dark:hover:bg-green-700 dark:text-white">Message</button>
<button class="bg-yellow-400 hover:bg-yellow-500 text-black py-2 px-4 rounded-none border-2 border-black dark:bg-yellow-600 dark:hover:bg-yellow-700 dark:text-white">Share</button>
</div>
</div>
Related Components
Social Components
A skeuomorphic social component designed for blogs/content purposes with vibrant colors and dark mode support.
Social Components Component
A responsive social media component designed with Neumorphism style and dark theme support, featuring a simple layout and minimal elements.
Social Components Component
A responsive social media component with dark mode support for business websites, featuring a triadic color scheme.