Skip to content

Commit

Permalink
remove login e register button in staging
Browse files Browse the repository at this point in the history
  • Loading branch information
AldemirLucas committed Nov 6, 2023
1 parent 53dff47 commit 8afd6cb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions next/components/molecules/Menu.js
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ function MenuDrawer({ isOpen, onClose, links }) {
<></>
:
<Stack display={isMobileMod() ? "flex" : "none"} marginTop="auto" gap="16px">
<RoundedButton
{/* <RoundedButton
backgroundColor="#FFF"
border="2px solid #42B0FF"
color="#42B0FF"
Expand All @@ -151,7 +151,7 @@ function MenuDrawer({ isOpen, onClose, links }) {
onClick={() => window.open("/user/register", "_self")}
>
Cadastrar
</RoundedButton>
</RoundedButton> */}
</Stack>
}
</DrawerContent>
Expand Down Expand Up @@ -782,14 +782,14 @@ function DesktopLinks({ links, position = false, path, userTemplate = false }) {
</HStack>
) : (
<>
<Link fontSize="15px" fontFamily="Ubuntu" fontWeight="400" letterSpacing="0.3px" href="/user/login">
{/* <Link fontSize="15px" fontFamily="Ubuntu" fontWeight="400" letterSpacing="0.3px" href="/user/login">
Entrar
</Link>
<Link _hover={{ opacity:"none" }} href="/user/register">
<RoundedButton height="35px" fontSize="15px" minWidth="110px" borderRadius="30px">
Cadastrar
</RoundedButton>
</Link>
</Link> */}
</>
)}
</HStack>
Expand Down

0 comments on commit 8afd6cb

Please sign in to comment.