Product Reviews Component
A responsive product reviews component designed for dark mode with a vibrant color scheme, suitable for business/corporate websites. It features user avatars, review ratings, and user comments in an interactive layout.
HTML Code
<div class="max-w-4xl mx-auto p-6 bg-gray-900 text-white rounded-lg shadow-lg">
<h2 class="text-2xl font-bold mb-4">Product Reviews</h2>
<div class="space-y-4">
<!-- Review Item -->
<div class="flex items-start bg-gray-800 p-4 rounded-lg">
<img src="https://randomuser.me/api/portraits/men/1.jpg" alt="User Avatar" class="w-12 h-12 rounded-full mr-4">
<div class="flex-1">
<div class="flex items-center mb-1">
<span class="text-yellow-400 text-xl">
★★★★☆
</span>
<span class="ml-2 text-sm text-gray-400">4.0</span>
</div>
<p class="text-gray-300">Great product! Highly recommend it to others.</p>
<span class="text-gray-500 text-xs">by John Doe on June 15, 2023</span>
</div>
</div>
<!-- Review Item -->
<div class="flex items-start bg-gray-800 p-4 rounded-lg">
<img src="https://randomuser.me/api/portraits/women/2.jpg" alt="User Avatar" class="w-12 h-12 rounded-full mr-4">
<div class="flex-1">
<div class="flex items-center mb-1">
<span class="text-yellow-400 text-xl">
★★★★★
</span>
<span class="ml-2 text-sm text-gray-400">5.0</span>
</div>
<p class="text-gray-300">Absolutely love this! It's perfect for my needs!</p>
<span class="text-gray-500 text-xs">by Jane Smith on June 10, 2023</span>
</div>
</div>
<!-- Review Item -->
<div class="flex items-start bg-gray-800 p-4 rounded-lg">
<img src="https://randomuser.me/api/portraits/men/3.jpg" alt="User Avatar" class="w-12 h-12 rounded-full mr-4">
<div class="flex-1">
<div class="flex items-center mb-1">
<span class="text-yellow-400 text-xl">
★★★☄☄
</span>
<span class="ml-2 text-sm text-gray-400">3.0</span>
</div>
<p class="text-gray-300">It's okay, but I expected better quality.</p>
<span class="text-gray-500 text-xs">by Mike Johnson on June 5, 2023</span>
</div>
</div>
</div>
</div>
Related Components
Product Reviews Component (Skeuomorphic Pastel)
A complex and responsive Product Reviews component styled with a Skeuomorphic design aesthetic using pastel colors and supporting dark mode. Features layered cards, subtle gradients, and shadows to create depth. Includes avatar, name, star rating, review text, and optional images. Uses Tailwind CSS exclusively with no JavaScript.
Product Reviews Component
A responsive product reviews component designed for social media interfaces, featuring a dark mode UI with a grayscale color scheme. Includes ratings, user avatars, review text, and a 'Read More' button.
Product Reviews Component
Retro/Vintage style, Earth tones color scheme, Moderate complexity Product Reviews Component with responsive design and dark theme support. Uses Tailwind CSS for styling, picsum.photos for product images, and randomuser.me for avatars. No JavaScript.