フッターコンポーネント
Neumorphism スタイルで設計された Footer コンポーネントで、Tailwind CSS を使用したレスポンシブエフェクトとダークテーマをサポートします。
HTMLコード
<footer class="bg-gray-200 dark:bg-gray-800 p-6 rounded-lg shadow-lg">
<div class="container mx-auto">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="mb-4 md:mb-0">
<h5 class="text-lg font-semibold text-gray-800 dark:text-gray-200">About Us</h5>
<p class="text-gray-600 dark:text-gray-400">We are dedicated to providing the best service to our customers.</p>
</div>
<div class="mb-4 md:mb-0">
<h5 class="text-lg font-semibold text-gray-800 dark:text-gray-200">Follow Us</h5>
<div class="flex space-x-4">
<a href="#" class="text-gray-600 dark:text-gray-400 hover:text-gray-800 dark:hover:text-gray-200">Facebook</a>
<a href="#" class="text-gray-600 dark:text-gray-400 hover:text-gray-800 dark:hover:text-gray-200">Twitter</a>
<a href="#" class="text-gray-600 dark:text-gray-400 hover:text-gray-800 dark:hover:text-gray-200">Instagram</a>
</div>
</div>
<div class="mb-4 md:mb-0">
<h5 class="text-lg font-semibold text-gray-800 dark:text-gray-200">Contact Us</h5>
<p class="text-gray-600 dark:text-gray-400">Email: [email protected]</p>
</div>
<div class="hidden md:block">
<img src="https://picsum.photos/50" alt="Placeholder" class="rounded-full w-10 h-10" />
</div>
</div>
<div class="text-center mt-6">
<p class="text-gray-600 dark:text-gray-400">© 2023 Company. All Rights Reserved.</p>
</div>
</div>
</footer>
関連コンポーネント
ニューモーフィックバイブラントフッター
シンプルでレスポンシブなフッター コンポーネントで、ニューモルフィックなデザイン原則と鮮やかな色でスタイル付けされています。繊細な影のある柔らかく押し出された外観が特徴で、彩度の高いアクセントカラーを維持しています。フッターには、サイトナビゲーション、ソーシャルリンク、およびダークモードを完全にサポートする著作権情報の基本セクションが含まれています。