Glassmorphism E-Commerce-Feature-Layout-Komponente
Glassmorphism E-Commerce-Feature-Layout-Komponente
HTML-Code
<div class="container mx-auto px-4 py-8 dark:bg-gray-900">
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Feature 1 -->
<div class="bg-white dark:bg-gray-800 bg-opacity-20 dark:bg-opacity-20 backdrop-filter backdrop-blur-lg rounded-lg p-6 shadow-lg">
<img src="https://picsum.photos/400/300" alt="Feature Image 1" class="rounded-lg mb-4">
<h3 class="text-xl font-semibold text-gray-800 dark:text-white mb-2">Feature Title 1</h3>
<p class="text-gray-600 dark:text-gray-300">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
</div>
<!-- Feature 2 -->
<div class="bg-white dark:bg-gray-800 bg-opacity-20 dark:bg-opacity-20 backdrop-filter backdrop-blur-lg rounded-lg p-6 shadow-lg">
<img src="https://picsum.photos/400/300" alt="Feature Image 2" class="rounded-lg mb-4">
<h3 class="text-xl font-semibold text-gray-800 dark:text-white mb-2">Feature Title 2</h3>
<p class="text-gray-600 dark:text-gray-300">Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
</div>
<!-- Feature 3 -->
<div class="bg-white dark:bg-gray-800 bg-opacity-20 dark:bg-opacity-20 backdrop-filter backdrop-blur-lg rounded-lg p-6 shadow-lg">
<img src="https://picsum.photos/400/300" alt="Feature Image 3" class="rounded-lg mb-4">
<h3 class="text-xl font-semibold text-gray-800 dark:text-white mb-2">Feature Title 3</h3>
<p class="text-gray-600 dark:text-gray-300">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>
</div>
</div>
</div>
Verwandte Komponenten
Komponente "Layout-Komponenten"
Eine Layout-Komponente, die in einem skeuomorphen Stil gestaltet ist, der reale Gegenstücke nachahmt, mit responsiven Elementen und Unterstützung für dunkle Themen unter Verwendung von Tailwind CSS.
Minimalistische Blog-Layout-Komponente
Minimalistische Blog-Layout-Komponente mit monochromatischem Farbschema für den Konsum von Inhalten, reaktionsschnell und mit Unterstützung für dunkle Themen.
Layout-Komponente im Dunkelmodus
Eine reaktionsschnelle Layoutkomponente mit Unterstützung für den Dunkelmodus unter Verwendung von Tailwind CSS. Verfügt über eine einfache Kopfzeile, einen Inhaltsbereich und eine Fußzeile. Der Dunkelmodus wird in Tailwind-Klassen durch das Präfix 'dark:' behandelt.