feat(frontend): add Cadastro button next to Login, remove dropdown

This commit is contained in:
GoHorse Deploy 2026-02-09 11:23:49 +00:00
parent 5c8bdac215
commit e1638f9275

View file

@ -69,11 +69,18 @@ export function Navbar() {
</Button>
</Link>
) : (
<>
<Link href="/login">
<Button variant="outline" className="border-primary text-primary hover:bg-primary/10 px-6 h-9 font-normal">
{loginLabel}
</Button>
</Link>
<Link href="/register">
<Button className="bg-primary hover:bg-primary/90 text-white px-6 h-9 font-normal">
{registerLabel}
</Button>
</Link>
</>
)}
</div>