1- import styled from " styled-components" ;
2- import { useNavigate } from " react-router-dom" ;
3- import SignupIllust from " ../../../shared/assets/images/auth/signupIllust.png" ;
1+ import styled from ' styled-components' ;
2+ import { useNavigate } from ' react-router-dom' ;
3+ import SignupIllust from ' ../../../shared/assets/images/auth/signupIllust.png' ;
44
55function CompleteSection ( ) {
66 const navigate = useNavigate ( ) ;
77
88 return (
99 < SectionWrapper >
1010 < ContentWrapper >
11- < PageNumber >
12- Hi! 👋
13- </ PageNumber >
11+ < PageNumber > Hi! 👋</ PageNumber >
1412 < TextWrapper >
1513 < Title > 회원가입이 완료되었습니다</ Title >
1614 < Description > 루미너스에 가입해주셔서 감사합니다!</ Description >
1715 </ TextWrapper >
1816 < ImageWrapper >
19- < StyledImg src = { SignupIllust } />
17+ < StyledImg src = { SignupIllust } />
2018 < ImageText >
21- 간단한 조사를 통해 방탈출 성향을 등록해주시면 < br />
19+ 간단한 조사를 통해 방탈출 성향을 등록해주시면 < br />
2220 루미너스가 좋은 서비스로 보답할게요!
2321 </ ImageText >
2422 </ ImageWrapper >
@@ -28,10 +26,10 @@ function CompleteSection() {
2826 < StyledButton onClick = { ( ) => navigate ( '/survey' ) } >
2927 < ButtonText > 성향조사 하기</ ButtonText >
3028 </ StyledButton >
31- < PassButton onClick = { ( ) => navigate ( '/' ) } > 다음에 할게요</ PassButton >
29+ < PassButton onClick = { ( ) => navigate ( '/home ' ) } > 다음에 할게요</ PassButton >
3230 </ ButtonWrapper >
3331 </ SectionWrapper >
34- )
32+ ) ;
3533}
3634
3735export default CompleteSection ;
@@ -47,7 +45,7 @@ const SectionWrapper = styled.div`
4745 flex-direction: column;
4846 justify-content: space-between;
4947 align-items: stretch;
50- background-color: #FFF ;
48+ background-color: #fff ;
5149 z-index: 1;
5250
5351 @media (max-width: 768px) {
@@ -82,7 +80,7 @@ const TextWrapper = styled.div`
8280` ;
8381
8482const Title = styled . div `
85- color: var(--RIU_Primary-100, #718FF2 );
83+ color: var(--RIU_Primary-100, #718ff2 );
8684 font-family: 'Pretendard-Bold';
8785 font-size: 1.125em;
8886 line-height: 130%;
@@ -151,14 +149,14 @@ const StyledButton = styled.button`
151149 gap: 0.625em;
152150 align-self: stretch;
153151 border-radius: 2.5em;
154- background: var(--RIU_Primary-Gradient-02, linear-gradient(282deg, #5B6ACC 0%, #718FF2 100%));
152+ background: var(--RIU_Primary-Gradient-02, linear-gradient(282deg, #5b6acc 0%, #718ff2 100%));
155153 cursor: pointer;
156154 position: relative;
157155 overflow: hidden;
158156 transition: all 0.2s ease-in-out;
159157
160158 &::before {
161- content: "" ;
159+ content: '' ;
162160 position: absolute;
163161 top: 0;
164162 left: 0;
@@ -179,7 +177,7 @@ const StyledButton = styled.button`
179177` ;
180178
181179const ButtonText = styled . div `
182- color: #FFF ;
180+ color: #fff ;
183181 font-family: 'Pretendard-Bold';
184182 line-height: 130%;
185183 z-index: 1;
@@ -206,4 +204,4 @@ const PassButton = styled.div`
206204 @media (max-width: 768px) {
207205 font-size: 0.75em;
208206 }
209- ` ;
207+ ` ;
0 commit comments