Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added src/assets/joinend.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
59 changes: 51 additions & 8 deletions src/pages/JoinEnd.jsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,52 @@
import styled from "styled-components";
import JoinTitle from "../components/join/JoinTitle";
import Emotion from "../assets/joinend.png";
import { useNavigate } from "react-router-dom";

const JoinEnd = () => {
return (
<div>
회원가입 완료 안내 페이지입니다
</div>
)
}

export default JoinEnd;
const navigate = useNavigate();

return (
<Wrapper>
<JoinTitle section3="#5263ff" />
<Text>회원가입이 완료되었습니다</Text>
<Img src={Emotion} alt="emotion" />
<Button onClick={() => navigate("/")}>메인 홈페이지로 돌아가기</Button>
</Wrapper>
);
};

export default JoinEnd;

const Wrapper = styled.div`
max-width: 900px;
margin: 0 auto;
`;

const Text = styled.div`
font-size: 20px;
font-weight: 400;
line-height: 29px;
text-align: center;
margin-top: 70px;
`;

const Img = styled.img`
display: block;
margin: 0 auto;
margin-top: 30px;
margin-bottom: 50px;
`;

const Button = styled.button`
width: 866px;
height: 47px;
border: none;
border-radius: 6px;
background-color: #5363ff;
color: #ffffff;
font-size: 15px;
font-weight: 600;
line-height: 29px;
margin-top: 60px;
`;