Eter (HTML) · NavbarHyperUI-style · MIT

Adicionar a coleção

Ainda sem coleções.

Navbar simples com 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-white border-b border-gray-100">
  <div class="max-w-6xl mx-auto px-6 py-4 flex items-center justify-between">
    <a href="#" class="text-xl font-bold text-gray-900">Acme<span class="text-orange-500">.</span></a>
    <div class="hidden md:flex items-center gap-8 text-sm font-medium text-gray-600">
      <a href="#" class="hover:text-gray-900">Produto</a>
      <a href="#" class="hover:text-gray-900">Preços</a>
      <a href="#" class="hover:text-gray-900">Recursos</a>
      <a href="#" class="hover:text-gray-900">Contacto</a>
    </div>
    <div class="flex items-center gap-3">
      <a href="#" class="hidden sm:inline text-sm font-medium text-gray-700">Entrar</a>
      <a href="#" class="bg-gray-900 text-white text-sm font-semibold px-4 py-2 rounded-lg hover:bg-black">Começar grátis</a>
    </div>
  </div>
</nav>