Wishlist Component
A responsive wishlist component designed with skeuomorphic elements and complementary colors for a dark theme dashboard.
HTML Code
<div class="max-w-xs mx-auto bg-gray-800 rounded-lg shadow-lg overflow-hidden dark:bg-gray-900">
<div class="p-4">
<h2 class="text-2xl font-bold text-white mb-2">Wishlist</h2>
<ul class="space-y-4">
<li class="bg-gray-700 dark:bg-gray-800 p-3 rounded-md flex items-center justify-between">
<div class="flex items-center space-x-3">
<img src="https://picsum.photos/50/50" alt="Product Image" class="w-12 h-12 rounded-md shadow-md" />
<div>
<h3 class="text-lg text-white">Product Name 1</h3>
<p class="text-sm text-gray-400">$20.00</p>
</div>
</div>
<button class="bg-blue-500 hover:bg-blue-600 text-white font-bold py-1 px-3 rounded-md">Add to Cart</button>
</li>
<li class="bg-gray-700 dark:bg-gray-800 p-3 rounded-md flex items-center justify-between">
<div class="flex items-center space-x-3">
<img src="https://picsum.photos/50/51" alt="Product Image" class="w-12 h-12 rounded-md shadow-md" />
<div>
<h3 class="text-lg text-white">Product Name 2</h3>
<p class="text-sm text-gray-400">$30.00</p>
</div>
</div>
<button class="bg-blue-500 hover:bg-blue-600 text-white font-bold py-1 px-3 rounded-md">Add to Cart</button>
</li>
<li class="bg-gray-700 dark:bg-gray-800 p-3 rounded-md flex items-center justify-between">
<div class="flex items-center space-x-3">
<img src="https://picsum.photos/50/52" alt="Product Image" class="w-12 h-12 rounded-md shadow-md" />
<div>
<h3 class="text-lg text-white">Product Name 3</h3>
<p class="text-sm text-gray-400">$40.00</p>
</div>
</div>
<button class="bg-blue-500 hover:bg-blue-600 text-white font-bold py-1 px-3 rounded-md">Add to Cart</button>
</li>
</ul>
</div>
</div>
Related Components
Glassmorphism_Wishlist_Component
A complex, responsive wishlist component featuring a Glassmorphism design with ocean/blue tones, optimized for dating/social platforms. Includes dark mode support and interactive elements.
Wishlist Component
A simple, responsive wishlist component with a monospace/developer aesthetic tailored for sports/fitness applications. Features black and white with an accent color, dark mode support, and uses semantic HTML.
Wishlist Component
A responsive wishlist component designed with 3D elements, earth tones, and dark mode support for showcasing work or products.