-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
design: 피드백 이후 디자인 수정 사항 반영
- Loading branch information
Showing
12 changed files
with
70 additions
and
50 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
export default function RightArrow({ color }: { color: string }) { | ||
return ( | ||
<svg | ||
width="24" | ||
height="24" | ||
viewBox="0 0 24 24" | ||
fill="none" | ||
xmlns="http://www.w3.org/2000/svg" | ||
> | ||
<g id="chevron-right"> | ||
<path | ||
id="Vector" | ||
d="M9 20.001L17 12.001L9 4.00098" | ||
stroke={color} | ||
stroke-opacity="0.87" | ||
stroke-width="2" | ||
stroke-linecap="round" | ||
stroke-linejoin="round" | ||
/> | ||
</g> | ||
</svg> | ||
) | ||
} |
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
21 changes: 8 additions & 13 deletions
21
src/components/domain/home/dictionary/ViewAllWords/index.tsx
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,30 +1,25 @@ | ||
import RightArrow from '@/components/common/Icons/RightArrow' | ||
import Image from 'next/image' | ||
import Link from 'next/link' | ||
|
||
export default function ViewAllWords() { | ||
return ( | ||
<Link | ||
href={'/dictionary'} | ||
className="flex justify-between items-center p-5 mx-4 rounded-2xl" | ||
style={{ | ||
backgroundImage: 'linear-gradient(117deg, #1FD5BC 4.97%, #358BF2 54%)', | ||
}} | ||
className="flex justify-between items-center p-5 mx-4 rounded-2xl bg-btn-gradient" | ||
> | ||
{/* 이미지 변경 필요 */} | ||
<Image alt="image" src={'/images/logo.svg'} width={75} height={75} /> | ||
<div className="flex flex-col gap-1"> | ||
<p className="leading-5 text-onSurface-300"> | ||
<p className="text-body2 text-background"> | ||
지금까지 등록된 실무 용어{' '} | ||
<span className="text-primary-200 font-semibold">100</span>개 | ||
<span className="text-secondary-300 text-h3"> | ||
100<span className="text-h3 text-background">개</span> | ||
</span> | ||
</p> | ||
<p className="text-h2 text-onSurface-300">전체 실무 용어 보러가기</p> | ||
<p className="text-h2 text-background">전체 실무 용어 보러가기</p> | ||
</div> | ||
<Image | ||
alt="보러가기" | ||
src={'/icons/right_arrow.svg'} | ||
width={24} | ||
height={24} | ||
/> | ||
<RightArrow color="#0E121B" /> | ||
</Link> | ||
) | ||
} |
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
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