diff --git a/frontend/public/signoz.svg b/frontend/public/signoz.svg index 092b45e0c9..73df99420e 100644 --- a/frontend/public/signoz.svg +++ b/frontend/public/signoz.svg @@ -1,5 +1,5 @@ - - - - + + + + diff --git a/frontend/src/pages/SignUp/index.tsx b/frontend/src/pages/SignUp/index.tsx index 65c4217fb8..3a15a98026 100644 --- a/frontend/src/pages/SignUp/index.tsx +++ b/frontend/src/pages/SignUp/index.tsx @@ -9,7 +9,13 @@ import { ThunkDispatch } from 'redux-thunk'; import { GlobalTimeLoading, UserLoggedIn } from 'store/actions'; import AppActions from 'types/actions'; -import { ButtonContainer, Container, FormWrapper, Title } from './styles'; +import { + ButtonContainer, + Container, + FormWrapper, + LogoImageContainer, + Title, +} from './styles'; const Signup = ({ globalLoading, loggedIn }: SignupProps): JSX.Element => { const [state, setState] = useState({ submitted: false }); @@ -75,7 +81,7 @@ const Signup = ({ globalLoading, loggedIn }: SignupProps): JSX.Element => { - logo +
diff --git a/frontend/src/pages/SignUp/styles.ts b/frontend/src/pages/SignUp/styles.ts index 5a2c4cc462..e90f440a92 100644 --- a/frontend/src/pages/SignUp/styles.ts +++ b/frontend/src/pages/SignUp/styles.ts @@ -25,3 +25,7 @@ export const FormWrapper = styled.div` export const ButtonContainer = styled.div` margin-top: 0.5rem; `; + +export const LogoImageContainer = styled.img` + width: 320px; +`;