feat(frontend): add Cadastro button next to Login, remove dropdown
This commit is contained in:
parent
5c8bdac215
commit
e1638f9275
1 changed files with 12 additions and 5 deletions
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue