-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d5532a6
commit 8e1ec75
Showing
20 changed files
with
251 additions
and
155 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.
Binary file not shown.
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
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
44 changes: 44 additions & 0 deletions
44
src/shared/ui/Footer/ExternalLinkList/ExternalLinkList.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 |
---|---|---|
@@ -0,0 +1,44 @@ | ||
import ExternalLink, { | ||
ExternalLinkProps, | ||
} from "../../ExternalLink/ExternalLink"; | ||
|
||
export const externalLinkList: Array<ExternalLinkProps> = [ | ||
{ | ||
link: "https://www.notion.so/6d012c4a80f845eca3d98defc11d6d86?pvs=4", | ||
content: "๊ฐ์ธ์ ๋ณด์ฒ๋ฆฌ๋ฐฉ์นจ", | ||
}, | ||
{ | ||
link: "https://www.notion.so/b942a4f9070442b7891cb136037ffa74?pvs=4", | ||
content: "์ด์ฉ์ฝ๊ด", | ||
}, | ||
{ | ||
link: "https://www.notion.so/17e92e6c1188429cb17ad92d84f65103?pvs=4", | ||
content: "์์น์ ๋ณด ์ด์ฉ์ฝ๊ด", | ||
}, | ||
{ | ||
link: "https://www.notion.so/f34337d192d54efd818663cbeb2ad77c?pvs=4", | ||
content: "์๋น์ค๊ฐ์ด๋", | ||
}, | ||
]; | ||
|
||
const ExternalLinkList = () => { | ||
return ( | ||
<div className="flex flex-row h-[21px] desktop:gap-5 tablet:gap-5 mobile:gap-[5px] text-custom-textDescriptionGrayColor text-sm font-medium"> | ||
{externalLinkList.map((externalLink, idx) => ( | ||
<div className="flex flex-row items-center h-full" key={idx}> | ||
<div key={externalLink.content}> | ||
<ExternalLink | ||
link={externalLink.link} | ||
content={externalLink.content} | ||
/> | ||
</div> | ||
{idx !== externalLinkList.length - 1 && ( | ||
<div className="h-[10px] border-custom-textDescriptionGrayColor text-base border-r desktop:pl-5 tablet:pl-5 mobile:pl-[5px] py-[5.5px]" /> | ||
)} | ||
</div> | ||
))} | ||
</div> | ||
); | ||
}; | ||
|
||
export default ExternalLinkList; |
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 @@ | ||
export { default as ExternalLinkList } from "./ExternalLinkList"; |
Oops, something went wrong.