Content Display Components
A simple vintage-style responsive content display component for e-commerce, using a monochromatic color scheme and supporting dark mode.
HTML Code
<div class="max-w-md mx-auto bg-gray-800 dark:bg-gray-900 rounded-lg overflow-hidden shadow-lg">
<img class="w-full h-48 object-cover" src="https://picsum.photos/seed/pic1/400/300" alt="Product Image">
<div class="p-6">
<h2 class="text-2xl font-bold text-gray-100 dark:text-gray-200 mb-2">Vintage Product Title</h2>
<p class="text-gray-300 dark:text-gray-400 mb-4">A brief description of the vintage product that evokes nostalgia from the 80s and 90s.</p>
<div class="flex items-center mb-4">
<img class="w-10 h-10 rounded-full mr-2" src="https://randomuser.me/api/portraits/men/1.jpg" alt="User Avatar">
<div class="text-sm">
<p class="text-gray-100 dark:text-gray-200">Seller Name</p>
<p class="text-gray-500 dark:text-gray-400">Seller Rating: ⭐⭐⭐⭐</p>
</div>
</div>
<span class="text-lg font-semibold text-gray-100 dark:text-gray-200">$29.99</span>
<div class="mt-4">
<button class="w-full bg-gray-600 hover:bg-gray-500 text-white font-bold py-2 px-4 rounded focus:outline-none focus:shadow-outline dark:bg-gray-700 dark:hover:bg-gray-600">Add to Cart</button>
</div>
</div>
</div>
Related Components
Memphis_Muted_Consulting_Content_Display
A content display component for consulting/services, inspired by Memphis design with muted colors and geometric patterns. Responsive with dark mode support.
Content Display Component
A responsive content display component styled with Glassmorphism, featuring blurred background and translucent elements with support for dark mode.
Content Display Components Component
A simple and vibrant content display component with micro-interactions, responsive design, and dark theme support, suitable for blogs and content consumption. Uses picsum.photos for images and randomuser.me for avatars.