Gallery Component
A responsive gallery component with a minimalist flat design, featuring images and dark theme support using Tailwind CSS.
HTML Code
<div class="bg-white dark:bg-gray-800 p-4 rounded-lg shadow-lg">
<h2 class="text-2xl font-semibold text-gray-800 dark:text-white mb-4">Gallery</h2>
<div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 gap-4">
<div class="bg-gray-200 dark:bg-gray-700 rounded overflow-hidden">
<img src="https://picsum.photos/200/300?random=1" alt="Random Image 1" class="w-full h-auto object-cover">
</div>
<div class="bg-gray-200 dark:bg-gray-700 rounded overflow-hidden">
<img src="https://picsum.photos/200/300?random=2" alt="Random Image 2" class="w-full h-auto object-cover">
</div>
<div class="bg-gray-200 dark:bg-gray-700 rounded overflow-hidden">
<img src="https://picsum.photos/200/300?random=3" alt="Random Image 3" class="w-full h-auto object-cover">
</div>
<div class="bg-gray-200 dark:bg-gray-700 rounded overflow-hidden">
<img src="https://picsum.photos/200/300?random=4" alt="Random Image 4" class="w-full h-auto object-cover">
</div>
<div class="bg-gray-200 dark:bg-gray-700 rounded overflow-hidden">
<img src="https://picsum.photos/200/300?random=5" alt="Random Image 5" class="w-full h-auto object-cover">
</div>
<div class="bg-gray-200 dark:bg-gray-700 rounded overflow-hidden">
<img src="https://picsum.photos/200/300?random=6" alt="Random Image 6" class="w-full h-auto object-cover">
</div>
</div>
</div>
Related Components
Gallery Component
A responsive Gallery Component using Tailwind CSS with Material Design style, suitable for a dashboard with dark theme support.
E-commerce Product Gallery
A complex, responsive, and dark-theme compatible gallery component with a minimalist design, a complementary color scheme, and multiple interactive elements suitable for e-commerce.
Real Estate Gallery Component
A responsive and professional gallery component for real estate listings, featuring a clean layout, pastel color scheme, and full dark mode support. Includes property cards with details, a filter/sort section, and a clear call to action.