E-commerce Components
A brutalist-style E-commerce component featuring bold design, high contrast, and a responsive layout with dark mode support.
HTML Code
<div class="bg-white text-black dark:bg-gray-900 dark:text-white p-6 rounded-lg shadow-lg">
<div class="flex flex-col md:flex-row items-center justify-between space-x-0 md:space-x-4">
<div class="flex-shrink-0">
<img class="w-32 h-32 rounded-lg shadow-md" src="https://picsum.photos/200/200" alt="Product Image">
</div>
<div class="mt-4 md:mt-0 md:flex-grow">
<h2 class="text-2xl font-bold">Brutalism T-Shirt</h2>
<p class="text-lg text-gray-700 dark:text-gray-300">A bold statement piece for your wardrobe. Embrace the raw aesthetic of brutalism with this unique T-Shirt.</p>
<span class="text-xl font-semibold text-red-600 dark:text-red-400">$29.99</span>
</div>
<div class="mt-4 md:mt-0">
<button class="bg-red-600 text-white font-bold py-2 px-4 rounded-full shadow hover:bg-red-700 dark:bg-red-500 dark:hover:bg-red-600 transition">Add to Cart</button>
</div>
</div>
<div class="mt-6 border-t border-gray-300 dark:border-gray-700 pt-4">
<h3 class="text-lg font-bold">Product Review</h3>
<div class="flex items-center mt-2">
<img class="w-8 h-8 rounded-full" src="https://randomuser.me/api/portraits/men/1.jpg" alt="User Avatar">
<div class="ml-2">
<span class="font-semibold">John Doe</span>
<p class="text-sm text-gray-600 dark:text-gray-400">“This shirt is awesome! Love the brutalist design.”</p>
</div>
</div>
<div class="mt-2 flex items-center">
<img class="w-8 h-8 rounded-full" src="https://randomuser.me/api/portraits/women/1.jpg" alt="User Avatar">
<div class="ml-2">
<span class="font-semibold">Jane Smith</span>
<p class="text-sm text-gray-600 dark:text-gray-400">“Very comfortable and stylish. Highly recommend!”</p>
</div>
</div>
</div>
</div>
Related Components
E-commerce Components Component
E-commerce component for a minimalist business website, with responsive design and dark theme support.
Retro E-commerce Product Card
A Retro/Vintage E-commerce product card with responsive design and dark mode support.
Social Media E-commerce Card
E-commerce component with a social media focus, Glassmorphism style, monochromatic color scheme, complex layout, responsive, and dark theme support.