remove beta tag from logo

This commit is contained in:
Aykut Saraç 2022-02-17 17:51:45 +03:00
parent 8483c6141a
commit fbc0effd71

View File

@ -36,16 +36,6 @@ const StyledTitleWrapper = styled.span`
color: ${({ theme }) => theme.ORANGE}; color: ${({ theme }) => theme.ORANGE};
`; `;
const StyledBetaText = styled.span`
position: absolute;
top: 0;
right: 0;
transform: translate(85%, -25%);
color: ${({ theme }) => theme.BLURPLE};
font-size: 12px;
font-weight: 400;
`;
export const Navbar: React.FC<NavbarProps> = () => { export const Navbar: React.FC<NavbarProps> = () => {
return ( return (
<StyledNavbar> <StyledNavbar>
@ -53,7 +43,6 @@ export const Navbar: React.FC<NavbarProps> = () => {
<a> <a>
<StyledLogo> <StyledLogo>
<StyledTitleWrapper>JSON</StyledTitleWrapper> Visio <StyledTitleWrapper>JSON</StyledTitleWrapper> Visio
<StyledBetaText>BETA!</StyledBetaText>
</StyledLogo> </StyledLogo>
</a> </a>
</Link> </Link>