Skip to content

Commit

Permalink
Merge pull request #449 from SejongPeer/feature/55
Browse files Browse the repository at this point in the history
feat: 마이페이지-세종스터디 이용방법 링크 추가
  • Loading branch information
Youjiiin authored Sep 4, 2024
2 parents cc90c62 + 7f482cb commit 3342db8
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/pages/myPage/mypage/MyPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,10 @@ const MyPage = () => {
const buddyInfoHandler = () => {
window.open('https://sejongbuddy.simple.ink/', '_blank');
};
//버디 사용방법
const studyInfoHandler = () => {
window.open('https://sejongpeer.notion.site/bd0e00cbc146400ab78e0e2ee34c8edf?pvs=4/', '_blank');
};

return (
<div className={styles.Container}>
Expand Down Expand Up @@ -387,7 +391,10 @@ const MyPage = () => {
<p style={{ fontWeight: '800' }}>사용방법</p>
</div>
<div className={styles.useInformBox}>
<button className={styles.useInformBtn}>
<button
className={styles.useInformBtn}
onClick={studyInfoHandler}
>
<div
className={styles.redWord2}
style={{ fontWeight: '400', fontFamily: 'jalnan' }}
Expand Down

0 comments on commit 3342db8

Please sign in to comment.