Skip to content

Commit 98c07b7

Browse files
authored
Merge pull request #73 from GDSCINHA/develop
Chore(#8)/ recruit submit 이름 변경 및 가입 완료문구 변경
2 parents 740911a + 66c6025 commit 98c07b7

File tree

2 files changed

+15
-10
lines changed

2 files changed

+15
-10
lines changed

src/app/recruit/page.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export default function Recruit() {
4242
try {
4343
setLoading(true)
4444
const response = await axios.post("https://www.gdgocinha.site/apply", formattedData);
45-
router.push("/recruit/submitted");
45+
router.push("/recruit/submit");
4646
} catch (error) {
4747
if (error.response && error.response.status === 500) {
4848
alert("이미 가입된 회원입니다.");
Lines changed: 14 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import React, { useState, useEffect } from 'react';
44
import { useRouter } from 'next/navigation'
55
import { Button } from "@nextui-org/react";
66

7-
export default function RecruitSubmitted() {
7+
export default function RecruitSubmit() {
88
const router = useRouter()
99
const [checkMotion, setCheckMotion] = useState(false);
1010

@@ -31,14 +31,19 @@ export default function RecruitSubmitted() {
3131
3232
</span>
3333
</div>
34-
<div className="text-3xl mt-[50px] font-semibold mobile:text-2xl">25-1 멤버 가입이 완료되었습니다.</div>
35-
<div className='text-xl mt-[20px] mobile:text-base items-center mobile:text-center'>
36-
회비 납부를 확인한 후 2~3일 내로,
37-
<strong className='text-[#EA4335]'> G</strong>
38-
<strong className='text-[#34A853]'>D</strong>
39-
<strong className='text-[#F9AB00]'>G</strong>
40-
<strong className='text-[#4285F4]'>o</strong>
41-
<strong className='text-[#EA4335]'>C</strong> <strong>INHA</strong> <br className='pc:hidden'/>채팅방에 초대해 드리겠습니다
34+
<div className="text-3xl mt-[50px] font-semibold mobile:text-2xl">25-1 멤버 가입이 완료되었습니다.</div>
35+
<div className='text-xl mt-[20px] mobile:text-sm items-center justify-center mobile:text-center'>
36+
<div className='flex justify-center'>신규 멤버 초대는 매주 월요일 오후 3시에 일괄 진행됩니다.</div>
37+
<div className='flex mobile:flex-col justify-center'>
38+
<div>회비 납부 확인 후,
39+
<strong className='text-[#EA4335]'> G</strong>
40+
<strong className='text-[#34A853]'>D</strong>
41+
<strong className='text-[#F9AB00]'>G</strong>
42+
<strong className='text-[#4285F4]'>o</strong>
43+
<strong className='text-[#EA4335]'>C</strong> <strong>INHA </strong>
44+
</div>
45+
<div className='mobile:'>채팅방에 초대해 드리겠습니다.</div>
46+
</div>
4247
</div>
4348
<Button variant='solid' color="success" className="mt-[50px] p-5 rounded-full text-white text-[15px] font-semibold !bg-[#34A853] mb-[50px]" onPress={() => router.push('/')}>메인으로 이동하기</Button>
4449
</div>

0 commit comments

Comments
 (0)