-
Notifications
You must be signed in to change notification settings - Fork 1
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
결과보기 페이지 완성 및 기타 스타일 수정 #10
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
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 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 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 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 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 |
---|---|---|
@@ -1,21 +1,92 @@ | ||
import { Button } from "@/components/form/Button"; | ||
import TopBar from "@/components/layout/TopBar"; | ||
import { Text } from "@/components/typography"; | ||
|
||
import { Line, TitleContainer } from "./ResultPage.styled"; | ||
import aaa from "@/assets/images/dongari.png"; | ||
|
||
import { | ||
ButtonGroup, | ||
ClubDescription, | ||
ClubImage, | ||
ClubItem, | ||
ClubItems, | ||
ClubTitle, | ||
Line, | ||
ResultContainer, | ||
ResultWrapper, | ||
TitleContainer, | ||
} from "./ResultPage.styled"; | ||
|
||
export default function ResultPage() { | ||
return ( | ||
<> | ||
<TopBar title="결과 보기" /> | ||
<TitleContainer> | ||
<Text size="s" color="gray"> | ||
OOO님의 동BTI는... | ||
</Text> | ||
<Text size="xl" color="primary" weight="bold"> | ||
무대를 좋아하는 연주가형 | ||
</Text> | ||
</TitleContainer> | ||
<Line /> | ||
<ResultWrapper> | ||
<ResultContainer> | ||
<TitleContainer> | ||
<Text size="s" color="gray"> | ||
OOO님의 동BTI는... | ||
</Text> | ||
<Text size="l" color="primary" weight="bold"> | ||
유니크한 체육을 즐기는 스포츠맨형 | ||
</Text> | ||
</TitleContainer> | ||
<Line /> | ||
<Text size="m" weight="bold"> | ||
OOO님을 위한 추천 동아리 | ||
</Text> | ||
|
||
<ClubItems> | ||
<ClubItem> | ||
<ClubTitle>수중탐사대</ClubTitle> | ||
<ClubDescription> | ||
<Text size="xs">더 넓고, 더 깊은 바다로!</Text> | ||
<Text size="xs" weight="bold"> | ||
경북대학교 유일무이 스킨스쿠버 동아리 | ||
</Text> | ||
</ClubDescription> | ||
<ClubImage src={aaa} alt="수중탐사대" /> | ||
</ClubItem> | ||
<ClubItem> | ||
<ClubTitle>싸울아비</ClubTitle> | ||
<ClubDescription> | ||
<Text size="xs">조선시대 무기를 직접 휘두르는</Text> | ||
<Text size="xs" weight="bold"> | ||
경북대학교 유일무이 병장기 동아리 | ||
</Text> | ||
</ClubDescription> | ||
<ClubImage src={aaa} alt="수중탐사대" /> | ||
</ClubItem> | ||
<ClubItem> | ||
<ClubTitle>인질범</ClubTitle> | ||
<ClubDescription> | ||
<Text size="xs">한 번 타면 영원히 질주해요. 앉을 시간이 없! 어! 요!</Text> | ||
<Text size="xs" weight="bold"> | ||
인라인, 보드 동아리 | ||
</Text> | ||
</ClubDescription> | ||
<ClubImage src={aaa} alt="수중탐사대" /> | ||
</ClubItem> | ||
</ClubItems> | ||
|
||
<Text size="xs" weight="light"> | ||
<b>3,800명</b>의 참가자 중 <b>38명</b>이 이 유형이 나왔어요! | ||
</Text> | ||
</ResultContainer> | ||
|
||
<ButtonGroup> | ||
<Button width="100%" height="50px" variants="secondary"> | ||
<Text size="s" weight="extrabold"> | ||
다시 검사하기 | ||
</Text> | ||
</Button> | ||
<Button width="100%" height="50px" variants="primary"> | ||
<Text size="s" weight="extrabold"> | ||
공유하기 | ||
</Text> | ||
</Button> | ||
</ButtonGroup> | ||
</ResultWrapper> | ||
</> | ||
); | ||
} |
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.
시간나시면
useSearchParams
사용해서/result?name=홍길동&type=AAA
이런식으로 받아서 결과를 표시할수 있도록 기능 구현해두면 좋을것 같아요~