Interactive Components Component 25
A Material Design styled interactive component featuring grid layout, responsive design, and dark theme support.
HTML Code
<div class="bg-white dark:bg-gray-800 rounded-lg shadow-lg p-6 max-w-sm mx-auto">
<div class="flex items-center space-x-4">
<img class="w-12 h-12 rounded-full" src="https://randomuser.me/api/portraits/men/32.jpg" alt="Avatar">
<div>
<h2 class="text-xl font-bold text-gray-800 dark:text-white">John Doe</h2>
<p class="text-gray-600 dark:text-gray-400">Software Engineer</p>
</div>
</div>
<div class="mt-4">
<img class="w-full rounded-lg" src="https://picsum.photos/400/200?random=1" alt="Random Image">
</div>
<div class="mt-4">
<h3 class="text-lg font-semibold text-gray-800 dark:text-white">About Me</h3>
<p class="text-gray-600 dark:text-gray-400">I'm a passionate software engineer with experience in building web applications. I love coding and exploring new technologies.</p>
</div>
<div class="mt-4 flex justify-between">
<a href="#" class="px-4 py-2 bg-blue-500 text-white rounded-lg hover:bg-blue-600 dark:bg-blue-700 dark:hover:bg-blue-600">Connect</a>
<a href="#" class="px-4 py-2 border border-gray-300 text-gray-600 rounded-lg hover:border-gray-400 dark:border-gray-700 dark:text-gray-400">Message</a>
</div>
</div>
Related Components
Interactive Components Component
An interactive component designed for educational platforms, featuring warm sunset gradient tones, smooth transitions, and dark mode support. It includes clickable cards that change appearance on hover/focus.
Social Media Interactive Component
A complex social media component featuring a forest/green color palette with neon/glow effects, suitable for interactive feeds with multiple elements. Includes responsive design and dark mode support.
Brutalist Product Card
A simple interactive product card component for e-commerce, with a Brutalist design in grayscale. It features a product image, title, price, and an 'Add to Cart' button. The component is responsive and supports dark mode. Hover effects are included for interactivity.