Dark Mode Navigation Bar
Navigation Bar Component with responsive effects and dark theme support.
HTML Code
<nav class="bg-gray-800 p-4 text-white">
<div class="container mx-auto flex items-center justify-between">
<div class="text-lg font-semibold">My Website</div>
<div class="hidden md:flex space-x-4">
<a href="#" class="hover:underline">Home</a>
<a href="#" class="hover:underline">About</a>
<a href="#" class="hover:underline">Services</a>
<a href="#" class="hover:underline">Contact</a>
</div>
<div class="md:hidden">
<button class="text-white focus:outline-none">
<svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16m-4 6h4"></path>
</svg>
</button>
</div>
</div>
</nav>
Related Components
Skeuomorphic Navigation Bar
A responsive navigation bar component designed in a skeuomorphic style with dark theme support using Tailwind CSS.
Social-Media-Glassmorphism-Navbar
Responsive Glassmorphism Social Media Navigation Bar with Dark Mode
3D_Corporate_Blues_Food_Restaurant_Nav
A complex, 3D-inspired navigation bar for food/restaurant websites, featuring corporate blues and full responsiveness with dark mode support. Incorporates elements like a logo, navigation links, search bar, user avatar, and cart.