Skip to content

Commit f943423

Browse files
authored
Merge pull request #225 from Room-In-Us/feature/#224-문의URL연결및SNS아이콘기능수정
Feat: 문의 URL 연결 및 SNS 아이콘 기능 수정
2 parents 8bd0274 + 12a6778 commit f943423

2 files changed

Lines changed: 11 additions & 11 deletions

File tree

src/shared/components/Footer.jsx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import styled from "styled-components";
22
import InstagramIcon from "../assets/icons/common/instagramIcon.svg?react";
33
import EmailIcon from "../assets/icons/common/emailIcon.svg?react";
4-
import KakaoTalkIcon from "../assets/icons/common/kakaoTalkIcon.svg?react";
4+
// import KakaoTalkIcon from "../assets/icons/common/kakaoTalkIcon.svg?react";
55

66
function Footer() {
77

@@ -12,12 +12,12 @@ function Footer() {
1212
<Divider>|</Divider>
1313
<StyledButton onClick={() => window.open('/privacy', '_blank', 'width=600,height=800')}>개인정보처리방침</StyledButton>
1414
<Divider>|</Divider>
15-
<StyledButton>문의하기</StyledButton>
15+
<StyledButton onClick={() => window.open('https://www.notion.so/2da2f8c6055280bf9b9cee64427d1468?pvs=106', '_blank')}>문의하기</StyledButton>
1616
</LeftWrapper>
1717
<RightWrapper>
18-
<StyledInstagramIcon/>
19-
<StyledEmailIcon/>
20-
<StyledKakaoTalkIcon/>
18+
<StyledInstagramIcon onClick={() => window.open('https://www.instagram.com/room.in.us_official/', '_blank')}/>
19+
<StyledEmailIcon onClick={() => window.open('mailto:roominus.official@gmail.com')}/>
20+
{/* <StyledKakaoTalkIcon/> */}
2121
</RightWrapper>
2222
</FooterWrapper>
2323
)
@@ -79,6 +79,6 @@ const StyledEmailIcon = styled(EmailIcon)`
7979
cursor: pointer;
8080
`;
8181

82-
const StyledKakaoTalkIcon = styled(KakaoTalkIcon)`
83-
cursor: pointer;
84-
`;
82+
// const StyledKakaoTalkIcon = styled(KakaoTalkIcon)`
83+
// cursor: pointer;
84+
// `;

src/shared/components/Header.jsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -247,12 +247,12 @@ function Header() {
247247
<MenuBottomWrapper>
248248
<StyledTextLogo/>
249249
<IconWrapper>
250-
<StyledInstagramIcon/>
251-
<StyledEmailIcon/>
250+
<StyledInstagramIcon onClick={() => window.open('https://www.instagram.com/room.in.us_official/', '_blank')}/>
251+
<StyledEmailIcon onClick={() => window.open('mailto:roominus.official@gmail.com')}/>
252252
</IconWrapper>
253253
<LegalNoticesText onClick={() => window.open('/terms', '_blank', 'width=600,height=800')}>이용약관</LegalNoticesText>
254254
<LegalNoticesText onClick={() => window.open('/privacy', '_blank', 'width=600,height=800')}>개인정보처리방침</LegalNoticesText>
255-
<InquiryButton><StyledInquiryIcon/>문의하기</InquiryButton>
255+
<InquiryButton onClick={() => window.open('https://www.notion.so/2da2f8c6055280bf9b9cee64427d1468?pvs=106', '_blank')}><StyledInquiryIcon/>문의하기</InquiryButton>
256256
</MenuBottomWrapper>
257257
</MenuWrapper>
258258
</>

0 commit comments

Comments
 (0)