Comments Section Component
A minimalist comments section component designed with Tailwind CSS, featuring clean lines, responsive effects, and support for dark mode. It includes user avatars, comment text, timestamps, and a simple input area for new comments.
HTML Code
<div class="bg-white dark:bg-gray-800 p-6 rounded-lg shadow-md">
<h2 class="text-xl font-semibold mb-4 text-gray-800 dark:text-gray-200">Comments</h2>
<div class="max-h-96 overflow-y-auto">
<div class="flex items-start mb-4">
<img class="w-10 h-10 rounded-full mr-3" src="https://randomuser.me/api/portraits/men/1.jpg" alt="User Avatar" />
<div class="flex-1">
<div class="bg-gray-100 dark:bg-gray-700 p-3 rounded-lg">
<p class="text-gray-800 dark:text-gray-200">This is a comment from a user. It has a minimalist style.</p>
</div>
<p class="text-gray-500 dark:text-gray-400 text-sm mt-1">2 hours ago</p>
</div>
</div>
<div class="flex items-start mb-4">
<img class="w-10 h-10 rounded-full mr-3" src="https://randomuser.me/api/portraits/women/2.jpg" alt="User Avatar" />
<div class="flex-1">
<div class="bg-gray-100 dark:bg-gray-700 p-3 rounded-lg">
<p class="text-gray-800 dark:text-gray-200">Another comment from a different user. This design is very clean.</p>
</div>
<p class="text-gray-500 dark:text-gray-400 text-sm mt-1">3 hours ago</p>
</div>
</div>
<div class="flex items-start mb-4">
<img class="w-10 h-10 rounded-full mr-3" src="https://randomuser.me/api/portraits/men/3.jpg" alt="User Avatar" />
<div class="flex-1">
<div class="bg-gray-100 dark:bg-gray-700 p-3 rounded-lg">
<p class="text-gray-800 dark:text-gray-200">I really like this minimalist approach!</p>
</div>
<p class="text-gray-500 dark:text-gray-400 text-sm mt-1">5 hours ago</p>
</div>
</div>
</div>
<div class="mt-6">
<textarea class="w-full p-2 border border-gray-300 dark:border-gray-600 rounded-lg focus:outline-none focus:ring focus:ring-blue-300 dark:focus:ring-blue-600 resize-none" rows="3" placeholder="Add a comment..."></textarea>
<button class="mt-2 bg-blue-500 hover:bg-blue-600 text-white font-semibold py-2 px-4 rounded-lg focus:outline-none focus:ring focus:ring-blue-300 dark:focus:ring-blue-600">Post Comment</button>
</div>
</div>
Related Components
Comments Section Component
Comments section component with a monochromatic color scheme, microinteractions, and responsive design with dark theme support.
Comments Section Component
A responsive comments section with Neumorphism design style, Earth tone colors, and dark theme support for blog content.
Comments Section Component
A responsive comments section component styled with glassmorphism design, featuring frosted glass-like translucent elements with blur effects and dark theme support using Tailwind CSS.