カートに入れるボタンコンポーネント
レトロ/ヴィンテージの美学と補完的な配色でデザインされた複雑なカートに入れるボタンは、プロの会社のWebサイトに適しています。このコンポーネントはダークモードをサポートし、レスポンシブで、スタイリングにTailwind CSSを利用しています。
HTMLコード
<div class="flex items-center justify-center p-5 bg-gradient-to-r from-pink-500 to-yellow-500 rounded-lg transition duration-300 ease-in-out hover:scale-105 dark:from-pink-800 dark:to-yellow-700"> <img src="https://picsum.photos/40/40" alt="Product Image" class="rounded"> <div class="ml-4"> <h2 class="text-lg font-bold text-gray-900 dark:text-gray-100">Product Title</h2> <p class="text-sm text-gray-700 dark:text-gray-300">This is a brief description of the product.</p> </div> <button class="ml-auto bg-blue-500 text-white font-semibold py-2 px-4 rounded hover:bg-blue-600 dark:bg-blue-700 dark:hover:bg-blue-800">Add to Cart</button> <img src="https://randomuser.me/api/portraits/men/1.jpg" alt="User Avatar" class="ml-4 h-10 w-10 rounded-full border-2 border-blue-500 dark:border-blue-700"> </div>