Eter (HTML) · NavbarCustom · MIT
Adicionar a coleção
Ainda sem coleções.
Navbar dark com pill CTA
Navbar — bloco Tailwind pronto a copiar.
Instalação
Bloco em HTML + Tailwind — sem dependências de build. Copie e cole diretamente no seu projeto.
html
<nav class="bg-gray-950 text-white">
<div class="max-w-6xl mx-auto px-6 py-4 flex items-center justify-between">
<a href="#" class="text-xl font-bold">Orbit</a>
<div class="hidden md:flex items-center gap-7 text-sm text-gray-300">
<a href="#" class="hover:text-white">Plataforma</a>
<a href="#" class="hover:text-white">Clientes</a>
<a href="#" class="hover:text-white">Preços</a>
</div>
<a href="#" class="bg-white text-gray-950 text-sm font-semibold px-4 py-2 rounded-full hover:bg-gray-200">Agendar demo</a>
</div>
</nav>