Skip to content

Commit

Permalink
chore: remove login from navbar
Browse files Browse the repository at this point in the history
  • Loading branch information
ruioliveira02 committed Dec 16, 2023
1 parent f01479b commit cfca454
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions components/Navbar/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,15 +75,15 @@ export default function Navbar({ bgColor, fgColor, button, children }) {
{item.name}
</Link>
))}
{isAuthenticated ? null : (
{/*isAuthenticated ? null : (
<Link
key="login"
href="/login"
className="font-iregular text-sm text-white transition-colors duration-75 ease-in hover:text-quinary"
>
Login
</Link>
)}
)*/}
</div>
{isAuthenticated ? (
<Menu as="div" className="relative z-50 ml-3">
Expand Down Expand Up @@ -185,7 +185,7 @@ export default function Navbar({ bgColor, fgColor, button, children }) {
</Link>
</Disclosure.Button>
))}
{!isAuthenticated && (
{/*!isAuthenticated && (
<Disclosure.Button
key="login"
as="a"
Expand All @@ -195,7 +195,7 @@ export default function Navbar({ bgColor, fgColor, button, children }) {
Login
</Link>
</Disclosure.Button>
)}
)*/}
{isAuthenticated && (
<Disclosure.Button
key="login"
Expand Down

0 comments on commit cfca454

Please sign in to comment.