feat: 온보딩 및 로그인 페이지 퍼블리싱#5
Merged
Merged
Conversation
choihooo
requested changes
Jun 26, 2026
choihooo
left a comment
Collaborator
There was a problem hiding this comment.
apps/mobile-shell/android/**` 폴더는 제거해 주세요.
이번 PR은 온보딩/로그인 웹 퍼블리싱 작업인데, Android native project 생성물이 함께 포함되어 있습니다. 저희가 말했던 구조에서는 apps/mobile-shell은 WebView shell 역할만 하고, native project materialization은 별도 작업으로 분리하는 게 맞아보입니다.
또한 현재 Onboarding이 main.tsx에서 앱 최초 화면처럼 직접 렌더되고 있는데, 디자인 의도상 splash 화면이라면 web onboarding page가 아니라 native splash로 처리해야 할 것 같습니다.
정리하면:
- native splash:
apps/mobile-shell/app.json의splash설정 또는expo-splash-screen으로 처리 - onboarding/login:
apps/web의 page/route로 처리 - mobile-shell: WebView shell 역할 유지
따라서 Android 폴더 제거와 함께, splash로 의도된 화면은 native splash 설정으로 분리해 주세요.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
퍼블리싱 환경 구축 후 온보딩과 로그인 페이지 퍼블리싱을 진행합니다.
close #4
Changes
public/fonts폴더에 Pretendard 폰트 파일을 추가했습니다.public/images폴더에 온보딩, 로그인 페이지 배경 이미지 파일과 소셜 로그인 아이콘 파일을 추가했습니다.src/pages폴더에 온보딩, 로그인 페이지와 css 파일들을 추가했습니다.Verification
pnpm dev:webNotes
pnpm dev:web후 Onboarding 페이지 렌더링을 확인했습니다.pnpm dev:web실행하여 렌더링을 확인했습니다.