Activity Feed Component
Minimalist/Flat Design Activity Feed for E-commerce, Monochromatic, Simple, Responsive, Dark Theme
HTML Code
<div class="bg-white dark:bg-gray-800 p-4 rounded-lg shadow-md">
<h3 class="text-lg font-semibold text-gray-900 dark:text-white mb-4">Activity Feed</h3>
<ul class="divide-y divide-gray-200 dark:divide-gray-700">
<li class="py-3 flex items-center justify-between">
<div class="flex items-center">
<img class="h-8 w-8 rounded-full object-cover mr-3" src="https://randomuser.me/api/portraits/men/32.jpg" alt="User Avatar">
<p class="text-sm text-gray-600 dark:text-gray-300">
<span class="font-medium text-gray-900 dark:text-white">John Doe</span> placed an order.
</p>
</div>
<span class="text-xs text-gray-400 dark:text-gray-500">2 hours ago</span>
</li>
<li class="py-3 flex items-center justify-between">
<div class="flex items-center">
<img class="h-8 w-8 rounded-full object-cover mr-3" src="https://randomuser.me/api/portraits/women/44.jpg" alt="User Avatar">
<p class="text-sm text-gray-600 dark:text-gray-300">
<span class="font-medium text-gray-900 dark:text-white">Jane Smith</span> reviewed a product.
</p>
</div>
<span class="text-xs text-gray-400 dark:text-gray-500">5 hours ago</span>
</li>
<li class="py-3 flex items-center justify-between">
<div class="flex items-center">
<img class="h-8 w-8 rounded-full object-cover mr-3" src="https://randomuser.me/api/portraits/men/55.jpg" alt="User Avatar">
<p class="text-sm text-gray-600 dark:text-gray-300">
<span class="font-medium text-gray-900 dark:text-white">Robert Brown</span> added item to cart.
</p>
</div>
<span class="text-xs text-gray-400 dark:text-gray-500">10 hours ago</span>
</li>
</ul>
</div>
Related Components
Activity Feed Component
A responsive activity feed component designed for dark mode UI using Tailwind CSS.
Activity Feed Component
Activity Feed Component with Retro/Vintage 80s/90s aesthetics, monochromatic color scheme, moderate complexity for blog/content consumption. Responsive design with dark mode support using Tailwind CSS. Images from picsum.photos and avatars from randomuser.me.
Activity Feed Component
A Retro/Vintage styled activity feed component for showcasing work or products. The design features an analogous color scheme with support for dark theme. The component is interactive and responsive, suitable for portfolio use.