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>
|
</Button>
|
||||||
</Link>
|
</Link>
|
||||||
) : (
|
) : (
|
||||||
|
<>
|
||||||
<Link href="/login">
|
<Link href="/login">
|
||||||
<Button variant="outline" className="border-primary text-primary hover:bg-primary/10 px-6 h-9 font-normal">
|
<Button variant="outline" className="border-primary text-primary hover:bg-primary/10 px-6 h-9 font-normal">
|
||||||
{loginLabel}
|
{loginLabel}
|
||||||
</Button>
|
</Button>
|
||||||
</Link>
|
</Link>
|
||||||
|
<Link href="/register">
|
||||||
|
<Button className="bg-primary hover:bg-primary/90 text-white px-6 h-9 font-normal">
|
||||||
|
{registerLabel}
|
||||||
|
</Button>
|
||||||
|
</Link>
|
||||||
|
</>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue