-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
✨ feat: 메인 페이지 모바일 UI 구현 및 modal 추가 #201
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
모바일 UI 너무 좋습니다! 코드도 깔끔해보여요 ㅎㅎ 수고하셨습니다 용호님!! 👍👍
궁금한 거 하나 달아두었습니다!
const { modal } = useModal(); | ||
|
||
const themeModal = () => { | ||
const setting = { | ||
title: MAIN_MESSAGES.modal.preparation_notice, | ||
content: MAIN_MESSAGES.modal.modal_notice('테마 상점은'), | ||
}; | ||
|
||
const button1 = { | ||
active: true, | ||
text: MAIN_MESSAGES.modal.confirm_button, | ||
color: semantic.light.accent.solid.alternative, | ||
}; | ||
modal(setting, button1); | ||
}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
몬가 사용되는걸 보니 굉장히 뿌듯하군요 ✨✨✨😤
const Spacer = () => { | ||
return ( | ||
<> | ||
<S.Section /> | ||
</> | ||
); | ||
}; | ||
|
||
export default Spacer; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
이 컴포넌트는 무슨 용도인가요??
✅ 체크리스트
📝 작업 상세 내용
SVG
메인 페이지 버튼 svg 추가
1️⃣ 모바일 UI 구현
메인 페이지 부분
TopSection
MiddleSection
BottomSection
등 모바일 UI를 구현했습니다.2️⃣ 메인 페이지 모달
아직 개발 중인 테마 상점, 회고 기능에 모달을 추가 했습니다.
3️⃣ 콜 아웃 컴포넌트
메인 페이지 하단에 콜 아웃 문구가 추가 되었습니다.
수정
모바일 화면에서
Callout
컴포넌트의svg
가 깨져서 미디어 쿼리를 모바일UI와 같이 적용하고 스타일을 분리 했습니다.🚨 버그 발생 이유 (선택 사항)
🔎 후속 작업 (선택 사항)
🤔 질문 사항 (선택 사항)
📚 참고 자료 (선택 사항)
추가적인 참고 사항이나 관련된 문서, 링크 등을 제공해주세요.
📸 스크린샷 (선택 사항)
변경 사항에 대한 스크린샷이 있다면 첨부해주세요.
✅ 셀프 체크리스트
이슈 번호: #195