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
Wishlist Component
A simple e-commerce wishlist component with microinteractions and a grayscale color scheme, optimized for responsive design and dark mode support.
Wishlist Component
A responsive Wishlist component styled in a retro/vintage design aesthetic, using a monochromatic color scheme for e-commerce purposes.
Wishlist Component
A responsive wishlist component designed in dark mode using Tailwind CSS. It features a card layout for items with images, descriptions, and user avatars, supporting dark theme and responsive effects.