diff --git a/src/assets/joinend.png b/src/assets/joinend.png
new file mode 100644
index 0000000..f1c88ad
Binary files /dev/null and b/src/assets/joinend.png differ
diff --git a/src/pages/JoinEnd.jsx b/src/pages/JoinEnd.jsx
index 66347f0..049f82c 100644
--- a/src/pages/JoinEnd.jsx
+++ b/src/pages/JoinEnd.jsx
@@ -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 (
-
- 회원가입 완료 안내 페이지입니다
-
- )
-}
-
-export default JoinEnd;
\ No newline at end of file
+ const navigate = useNavigate();
+
+ return (
+
+
+ 회원가입이 완료되었습니다
+
+
+
+ );
+};
+
+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;
+`;