-
Notifications
You must be signed in to change notification settings - Fork 1
첫번째 온보딩 화면 구현 #102
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
Merged
The head ref may contain hidden characters: "101-feat-\uC628\uBCF4\uB529-\uCCAB\uBC88\uC9F8-\uD654\uBA74-\uBC0F-\uB85C\uB529"
Merged
첫번째 온보딩 화면 구현 #102
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,40 @@ | ||
| import WelcomeMessage from '@/image/Welcomem.svg'; | ||
| import WelcomeIllustration from '@/image/Welcome.svg'; | ||
| import Button from '@/component/common/Button/Button'; | ||
| import { useNavigate } from 'react-router-dom'; | ||
|
|
||
| export default function Register1() { | ||
| const navigate = useNavigate(); | ||
|
|
||
| return ( | ||
| <div className="min-h-screen bg-beige1 flex flex-col items-center justify-between px-6 py-10"> | ||
|
|
||
| <div className="mt-6 w-full flex justify-center"> | ||
| <img | ||
| src={WelcomeMessage} | ||
| alt="숨여행, 틈이 처음이시네요! 초기 설정을 진행할게요." | ||
| className="w-full max-w-[320px] h-auto" | ||
| /> | ||
| </div> | ||
| <div className="flex-1 w-full flex items-center justify-center"> | ||
| <img | ||
| src={WelcomeIllustration} | ||
| alt="환영 일러스트" | ||
| className="w-full max-w-[320px] h-auto" | ||
| /> | ||
| </div> | ||
|
|
||
| <div className="w-full"> | ||
| <Button | ||
| variant="lg" | ||
| color="green3" | ||
| className="w-full" | ||
| onClick={() => navigate('/register/2')} | ||
| aria-label="다음 단계로 이동" | ||
| > | ||
| 다음 | ||
| </Button> | ||
| </div> | ||
| </div> | ||
| ); | ||
| } | ||
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
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.
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.
이건 이미지 말고 그냥 텍스트로 바꾸시면 더 좋을 것 같습니다.