Skip to content

Commit

Permalink
refactor: Update sign-up success page layout and content
Browse files Browse the repository at this point in the history
  • Loading branch information
seonghunYang committed Jun 28, 2024
1 parent 8bc64f5 commit cb8b5ca
Showing 1 changed file with 11 additions and 14 deletions.
25 changes: 11 additions & 14 deletions app/(sub-page)/sign-up/components/sign-up-success.tsx
Original file line number Diff line number Diff line change
@@ -1,25 +1,22 @@
import Button from '@/app/ui/view/atom/button/button';
import TitleBox from '@/app/ui/view/molecule/title-box/title-box';
import Link from 'next/link';

// 내용이랑 스타일은 mock인 상태입니다.
export default function SignUpSuccess() {
return (
<div className="min-h-screen bg-gray-100 flex items-center justify-center px-4 sm:px-6">
<div className="max-w-md w-full space-y-8">
<div className="space-y-2">
<h2 className="text-3xl font-extrabold tracking-tight">Youre all set.</h2>
<p className="text-gray-500">
Thanks for signing up! We just need to verify your email address to complete the process.
</p>
</div>
<div className="space-y-4">
<div className="grid grid-cols-2 gap-4">
<Link className="inline-block w-full" href="/sign-in">
<Button className="w-full" label={'로그인 하기'} />
<>
<TitleBox title={'회원가입 완료'}>
<div className="h-[260px] text-2xl font-bold w-2/4 flex flex-col justify-center space-y-2">
<div>회원가입이 완료되었습니다</div>
<div>로그인 후 졸업 사정 결과를 확인해보세요!</div>
<div className="pt-6">
<Link href="/sign-in">
<Button size={'md'} label={'로그인 하기'} />
</Link>
</div>
</div>
</div>
</div>
</TitleBox>
</>
);
}

0 comments on commit cb8b5ca

Please sign in to comment.