User Profiles Component
User Profiles Component with Neumorphism design, responsive effects, and dark theme support.
HTML Code
<div class="flex flex-wrap items-center justify-center min-h-screen bg-gray-100 dark:bg-gray-900 p-10">
<!-- User Profile Card -->
<div class="w-full max-w-sm mx-auto bg-white dark:bg-gray-800 rounded-2xl shadow-xl p-6 m-4 neumorphism-light dark:neumorphism-dark">
<div class="flex justify-center">
<img class="w-32 h-32 rounded-full shadow-md border-4 border-gray-200 dark:border-gray-700" src="https://randomuser.me/api/portraits/women/79.jpg" alt="Profile Picture">
</div>
<div class="mt-5 text-center">
<h2 class="text-xl font-semibold text-gray-800 dark:text-white">Jane Doe</h2>
<p class="text-gray-600 dark:text-gray-400 mt-1">Software Engineer</p>
<p class="text-gray-500 dark:text-gray-500 text-sm mt-2">Passionate about creating beautiful and functional web applications.</p>
</div>
<div class="flex justify-center mt-5">
<a href="#" class="text-blue-500 hover:text-blue-700 dark:text-blue-400 dark:hover:text-blue-600 mx-3">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="text-blue-700 hover:text-blue-900 dark:text-blue-600 dark:hover:text-blue-800 mx-3">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="#" class="text-gray-700 hover:text-gray-900 dark:text-gray-300 dark:hover:text-gray-100 mx-3">
<i class="fab fa-github"></i>
</a>
</div>
</div>
<!-- Another User Profile Card -->
<div class="w-full max-w-sm mx-auto bg-white dark:bg-gray-800 rounded-2xl shadow-xl p-6 m-4 neumorphism-light dark:neumorphism-dark">
<div class="flex justify-center">
<img class="w-32 h-32 rounded-full shadow-md border-4 border-gray-200 dark:border-gray-700" src="https://randomuser.me/api/portraits/men/80.jpg" alt="Profile Picture">
</div>
<div class="mt-5 text-center">
<h2 class="text-xl font-semibold text-gray-800 dark:text-white">John Smith</h2>
<p class="text-gray-600 dark:text-gray-400 mt-1">UX Designer</p>
<p class="text-gray-500 dark:text-gray-500 text-sm mt-2">Focused on creating intuitive and enjoyable user experiences.</p>
</div>
<div class="flex justify-center mt-5">
<a href="#" class="text-blue-500 hover:text-blue-700 dark:text-blue-400 dark:hover:text-blue-600 mx-3">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="text-blue-700 hover:text-blue-900 dark:text-blue-600 dark:hover:text-blue-800 mx-3">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="#" class="text-gray-700 hover:text-gray-900 dark:text-gray-300 dark:hover:text-gray-100 mx-3">
<i class="fab fa-github"></i>
</a>
</div>
</div>
<!-- Add more profile cards as needed -->
</div>
<style>
.neumorphism-light {
box-shadow: 7px 7px 15px #cbced1, -7px -7px 15px #ffffff;
}
.dark .neumorphism-dark {
box-shadow: 7px 7px 15px #1c1c1c, -7px -7px 15px #2e2e2e;
}
</style>
Related Components
User Profiles Component
A complex, 3D-inspired user profile component designed for booking/reservation systems, featuring cool neutrals, responsiveness, and dark mode support.
User Profiles Component
A simple, responsive user profile card for a marketplace, featuring an organic/nature-inspired design with corporate blue tones and dark mode support.
User Profile Simple Card
Responsive User Profile Card with Tailwind CSS, Material Design, Earth Tones Color Scheme. Dark mode supported, No JS needed.