Skip to content

Commit

Permalink
#16 fix: 회원가입 success page 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
leejin-rho committed Jul 3, 2024
1 parent 17f4309 commit edc86f0
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions pages/success.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,21 @@ const SignupSuccess: NextPage = () => {
});

return (
<FlexBox direction="col" className="w-full h-full justify-center">
<div className="w-1/5 aspect-square" ref={lottieRef} />
<div className="h4 text-center mb-12">회원가입을 완료하였습니다!</div>
<div className="grid grid-cols-2 gap-2 w-full px-6">
<div className="w-full h-full flex flex justify-center items-center">
<FlexBox
direction="col"
className="w-[90%] h-full items-center justify-center"
>
<div className="w-1/5 aspect-square" ref={lottieRef} />
<div className="h4 text-center mb-12">회원가입을 완료하였습니다!</div>

<Button
text="로그인하러 가기"
style="bg-main-100 text-grey-900"
onClick={() => router.push("/login")}
/>
</div>
</FlexBox>
</FlexBox>
</div>
);
};

Expand Down

0 comments on commit edc86f0

Please sign in to comment.