Skip to content

Commit

Permalink
๐Ÿš‘ Modify some text in signup page
Browse files Browse the repository at this point in the history
  • Loading branch information
youngminss committed Feb 24, 2023
1 parent e1e09c2 commit 33d0a1e
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions app/signup/page.tsx
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
'use client';

import { useState } from 'react';
import styled, { CSSProperties } from 'styled-components';
import { Checkbox, LargeBtn, Typography } from 'components/shared';
import { SignuptextField } from 'components/feature';
import style from 'styles/style';
import { Checkbox, LargeBtn, Typography } from 'components/shared';
import { SERVICE_POLICY_DESC_001, SERVICE_POLICY_DESC_002, SERVICE_TERMS_DESC } from 'constants/signup';
import { isValidatedSignupFormAgreement } from 'core/signupService';
import { SERVICE_TERMS_DESC, SERVICE_POLICY_DESC_001, SERVICE_POLICY_DESC_002 } from 'constants/signup';
import useOAuthResponseStore from 'store/actions/oauthStore';
import { useRouter } from 'next/navigation';
import { postJwtTokenByOAuthResponse } from 'hooks/api/auth/useSignup';
import { setUserTokenInLocalStorage } from 'utils/storage';
import useRouteChangeAndRefreshDetect from 'hooks/useRouteChangeAndRefreshDetect';
import { getUserSession } from 'hooks/api/auth/useUserSession';
import useRouteChangeAndRefreshDetect from 'hooks/useRouteChangeAndRefreshDetect';
import { useRouter } from 'next/navigation';
import { useState } from 'react';
import useOAuthResponseStore from 'store/actions/oauthStore';
import useUserSessionStore from 'store/actions/userSessionStore';
import styled, { CSSProperties } from 'styled-components';
import style from 'styles/style';
import { setUserTokenInLocalStorage } from 'utils/storage';

const SignUp = () => {
useRouteChangeAndRefreshDetect({
Expand Down Expand Up @@ -107,10 +107,10 @@ const SignUp = () => {
return (
<Container onSubmit={handleSignupFormSubmit}>
<Typography variant="h2" aggressive="headline_oneline_002" padding="0 0 12px 0">
Pump!์— ์˜ค์‹  ๊ฒƒ์„ ํ™˜์˜ํ•ฉ๋‹ˆ๋‹ค!
Pump์— ์˜ค์‹  ๊ฒƒ์„ ํ™˜์˜ํ•ฉ๋‹ˆ๋‹ค!
</Typography>
<Typography variant="p" aggressive="body_oneline_000" padding="0 0 32px 0">
{oauthType} ๊ณ„์ •์œผ๋กœ Pump!๋ฅผ ์ด์šฉํ•˜์‹ค ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค.
{oauthType} ๊ณ„์ •์œผ๋กœ Pump๋ฅผ ์ด์šฉํ•˜์‹ค ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค.
</Typography>

<SignuptextField type="text" readOnly={true} defaultValue={email} />
Expand Down

0 comments on commit 33d0a1e

Please sign in to comment.