Skip to content

Commit

Permalink
fix: gdsc 이름 변경되지 않은 부분 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
eugene028 committed Feb 25, 2025
1 parent bacc1f3 commit 7908e84
Show file tree
Hide file tree
Showing 15 changed files with 160 additions and 98 deletions.
25 changes: 13 additions & 12 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,11 @@ function App() {
</Flex>
</BlueSection>
<Space height={40} />
<Introduction direction="column">
<Introduction
direction="column"
css={css`
background-color: white;
`}>
<Text typo="h1" color="primary">
GDGoC?
</Text>
Expand All @@ -67,14 +71,11 @@ function App() {
word-break: keep-all;
`}>
GDGoC는 Google Developers에서 제공하는 프로그램을 통해 운영되는 대학교
기반의 개발자 커뮤니티 그룹이에요.
<br />
개발자로서 성장하는 데 관심이 있는 학부생이라면 누구나 참여할 수
있어요.
<br />
GDGoC의 목표는 전 세계의 대학생 개발자들이 구글 관련 기술 혹은
기반의 개발자 커뮤니티 그룹입니다. 개발자로서 성장하는 데 관심이 있는
학부생이라면 누구나 참여할 수 있습니다.
<br /> GDGoC의 목표는 전 세계의 대학생 개발자들이 구글 관련 기술 혹은
프로그래밍 실력을 높이고 지역 사회와 협력하여 실제 문제를 해결하도록
성장하는 것이에요.
성장하는 것입니다.
</Text>
</Introduction>
<Space height={80} />
Expand Down Expand Up @@ -144,7 +145,7 @@ function App() {
<Flex direction="column" gap="sm">
<InformationBox
title="모집 기간"
description="1차 지원 기간: 2월 27일 ~ 3월 1일"
description="1차 지원 기간 : 2월 27일 ~ 3월 1일"
description2="2차 지원 기간 : 3월 4일 ~ 3월 8일"
/>
<InformationBox
Expand All @@ -170,7 +171,7 @@ function App() {
if (isAuthenticated()) navigate(RoutePath.Dashboard);
else navigate(RoutePath.GithubSignin);
}}>
가입하기
지원하기
</ApplyButton>
<Space height={40} />
</BlueSection>
Expand All @@ -186,7 +187,7 @@ function App() {
/>
<InformationBox
title="Q. 다른 동아리, 학회와 병행 가능한가요?"
description="A. 당연합니다!"
description="A. 가능합니다!"
description2="GDGoC Hongik은 멤버 분들이 각자의 일정과 시간에 맞춰서 편하게 활동하실 수 있게, 모든 활동에 자율적으로 참여할 수 있는 환경을 제공하고 있어요."
/>
<InformationBox
Expand Down Expand Up @@ -246,7 +247,7 @@ const Img = styled.img`
const ApplyButton = styled.button`
height: 44px;
width: calc(100% - 32px);
border-radius: 100px;
border-radius: 8px;
background-color: ${color.white};
color: ${color.primary};
Expand Down
30 changes: 25 additions & 5 deletions src/assets/FooterLogoIcon.tsx

Large diffs are not rendered by default.

137 changes: 80 additions & 57 deletions src/assets/Onboarding.tsx

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ const JoinRegularMemberBottomSheet = ({
<Text>
자세한 내용은{' '}
<TextLink to={RoutePath.GDSCHongikLink} target="_blank">
GDSC Hongik 페이지
GDGoC Hongik 페이지
</TextLink>
를 참고해주세요.
</Text>
Expand Down
2 changes: 1 addition & 1 deletion src/components/discordConnect/DiscordName.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ const TextSection = memo(() => {
<Text typo="h1">사용자명을 알려주세요.</Text>
<Space height="sm" />
<Text typo="body1">
GDSC Hongik 디스코드 서버에서는 사용자명을 통해 멤버를 구분해요.
GDGoC Hongik 디스코드 서버에서는 사용자명을 통해 멤버를 구분해요.
</Text>
</div>
<Image
Expand Down
4 changes: 2 additions & 2 deletions src/components/discordConnect/DiscordNickName.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ const TextSection = memo(() => (
<Text typo="h1">별명을 설정하세요.</Text>
<Space height="sm" />
<Text typo="body1">
GDSC Hongik 디스코드 서버에서 사용할 별명을 설정해주세요.
GDGoC Hongik 디스코드 서버에서 사용할 별명을 설정해주세요.
</Text>
</div>
<Image src={DiscordImage} alt="discord-nickname" width={325} height={157} />
Expand Down Expand Up @@ -103,7 +103,7 @@ const NameField = ({ control }: { control: Control<DiscordFormValues> }) => {
)}
<li>최소 2자, 최대 6자의 한글만 작성 가능</li>
<li>
<u>GDSC Hongik 가이드라인</u>에 어긋나지 않게 작성
<u>GDGoC Hongik 가이드라인</u>에 어긋나지 않게 작성
</li>
</ul>
}
Expand Down
10 changes: 9 additions & 1 deletion src/components/discordConnect/JoinServer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,15 @@ export const JoinServer = ({ onNext }: { onNext: () => void }) => {
onNext();
}}
disabled={!data?.isJoined}
style={{ maxWidth: '100%' }}>
style={{
maxWidth: '100%',
backgroundColor: callQuery
? color.darkDisabled
: data?.isJoined
? color.primary
: color.darkDisabled,
color: 'white'
}}>
{callQuery
? '합류 여부를 확인 중이에요.'
: data?.isJoined
Expand Down
7 changes: 3 additions & 4 deletions src/components/layout/Footer.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import { Logo } from '@/assets/LogoIcon';
import styled from '@emotion/styled';
import { Link } from 'react-router-dom';
import { color } from 'wowds-tokens';
Expand All @@ -8,7 +7,7 @@ import { FooterLogoIcon } from '@/assets/FooterLogoIcon';
const Footer = () => {
return (
<Container>
<Logo />
{/* <Logo /> */}
<FooterLogoIcon />

<Flex direction="column" align="start" gap="md">
Expand All @@ -19,12 +18,12 @@ const Footer = () => {
</Link>
<Link to={'https://www.gdschongik.com/onboarding/community-rule'}>
<Text typo="label2" style={{ textDecoration: 'underline' }}>
GDSC Hongik 회칙
GDGoC Hongik 회칙
</Text>
</Link>
<Link to={'https://www.gdschongik.com/onboarding/community-guideline'}>
<Text typo="label2" style={{ textDecoration: 'underline' }}>
GDSC Hongik 가이드라인{' '}
GDGoC Hongik 가이드라인{' '}
</Text>
</Link>
<Link to={'https://www.gdschongik.com/term-of-use'}>
Expand Down
5 changes: 2 additions & 3 deletions src/components/myPage/ApproveBox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,10 @@ export const ApproveBox = ({
ASSOCIATE: {
text: `${convertRecruitmentName(currentRecruitment.name, currentRecruitment.roundTypeValue)}`,
subText: currentMembership
? '하단의 정회원 가입 조건을 완료해주세요'
? '정회원 가입 조건을 완료해주세요'
: `${convertRecruitmentPeriod(currentRecruitment.period)}`,
variant: currentMembership ? 'text' : 'arrow',
status: 'error',
disabled: !!currentMembership
status: 'error'
}
};

Expand Down
2 changes: 1 addition & 1 deletion src/components/myPage/Privacy.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export const Privacy = ({ basicInfo }: { basicInfo: UserBasicInfo }) => {
</Text>
{studentId && (
<Text color="sub" typo="body1">
이미 제출된 정보를 수정해야 할 경우, GDSC Hongik 카카오톡 채널로 문의
이미 제출된 정보를 수정해야 할 경우, GDGoC Hongik 카카오톡 채널로 문의
주세요.
</Text>
)}
Expand Down
6 changes: 5 additions & 1 deletion src/components/signup/EmailInputField.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,11 @@ const EmailInputField = ({ control }: DepartmentSelectProps) => {
onChange={field.onChange}
onBlur={field.onBlur}
placeholder="내용을 입력하세요"
helperText={fieldState.error ? fieldState.error?.message : ''}
helperText={
fieldState.error
? fieldState.error?.message
: '* 추후 학회 활동에 대한 내용을 전달하는 데 사용될 예정입니다. '
}
/>
</TextFieldWrapper>
)}
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Auth.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export const Auth = () => {
</Text>
<TextContainer>
<Text typo="body1">
GDSC Hongik에서는 더 나은 커뮤니티 운영과 안전한 회원 정보 관리를
GDGoC Hongik에서는 더 나은 커뮤니티 운영과 안전한 회원 정보 관리를
위해 Github 소셜 로그인을 사용하고 있어요. Github 계정이 없다면,
새로 가입해야 해요.
</Text>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/PaymentsSuccess.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export function PaymentsSuccess() {
</Heading>
<Flex direction="column" align="start">
<Text>이번 학기 회비 결제를 완료했어요.</Text>
<Text>이제 GDSC 정회원으로 이번 학기에 활동하실 수 있어요!</Text>
<Text>이제 GDGoC 정회원으로 이번 학기에 활동하실 수 있어요!</Text>
</Flex>
</Flex>
<Flex direction="column">
Expand Down
9 changes: 7 additions & 2 deletions src/pages/SignUp.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import useCreateUserBasicInfo from '@/hooks/mutation/useCreateUserBasicInfo';
import Button from 'wowds-ui/Button';
import Checkbox from 'wowds-ui/Checkbox';
import TextField from 'wowds-ui/TextField';

import { LoadingForm } from '@/components/common/LoadingForm';
import RoutePath from '@/routes/routePath';
import { Suspense } from 'react';
Expand Down Expand Up @@ -218,7 +219,7 @@ export const SignUp = () => {
to={RoutePath.TermsLink}
target="_blank"
color={field.value ? 'textBlack' : 'sub'}>
GDSC 회칙
GDGoC 회칙
</GuideLink>
에 동의합니다.
</Text>
Expand Down Expand Up @@ -257,7 +258,11 @@ export const SignUp = () => {
type="submit"
role="button"
disabled={!isValid}
style={{ maxWidth: '100%' }}>
style={{
maxWidth: '100%',
backgroundColor: isValid ? color.primary : color.darkDisabled,
color: 'white'
}}>
가입 신청하기
</Button>
</Flex>
Expand Down
15 changes: 9 additions & 6 deletions src/pages/StudentVerification.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,8 @@ export const StudentVerification = () => {
재학생 인증하기
</Text>
<div>
<Text>가입 신청서를 작성하려면 재학생 인증이 필요해요.</Text>
<Text>
본인의 홍익대학교 Gmail(g.hongik.ac.kr)로 재학생 인증을
수행해주세요.{' '}
</Text>
<Text>준회원으로 활동하기 위해서 재학생 인증 과정이 필요해요.</Text>
<Text>학교 이메일을 통해 재학생 인증을 마무리해주세요!</Text>
</div>
</TextContainer>
<form onSubmit={handleSubmit}>
Expand Down Expand Up @@ -106,7 +103,13 @@ export const StudentVerification = () => {
<br />* 인증메일이 스팸메일함에 전송될 수 있으니 확인해주세요.
</Text>
<ButtonContainer>
<Button disabled={!isValid} style={{ maxWidth: '100%' }}>
<Button
disabled={!isValid}
style={{
maxWidth: '100%',
backgroundColor: isValid ? color.primary : color.darkDisabled,
color: 'white'
}}>
인증메일 받기
</Button>
<StudentGuideLink
Expand Down

0 comments on commit 7908e84

Please sign in to comment.