-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #32 from GDSC-DGU/feature/timeline
✨Feat: Timeline 피드백 반영, Footer 제작, 폰트, 색상, 반응형 적용
- Loading branch information
Showing
15 changed files
with
193 additions
and
76 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 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
Empty file.
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,50 @@ | ||
'use client'; | ||
import React from 'react'; | ||
import RightArrowIcon from 'public/svg/icons/common/right_arrow.svg'; | ||
|
||
/** | ||
* @description | ||
* 레이아웃 Footer | ||
* @component Footer | ||
* @returns {JSX.Element} Footer | ||
* @since 2024.04.26 | ||
*/ | ||
|
||
const Footer = () => { | ||
const handlePress = () => { | ||
console.log('Arrow clicked'); | ||
}; | ||
|
||
return ( | ||
<footer className="w-full py-10 bg-mono_900 flex desktop:pl-80 tablet:pl-20 pl-10"> | ||
<div className="flex justify-start items-start w-full gap-10"> | ||
<div> | ||
<h1 className="F1">About Us</h1> | ||
<p className="F2">Final Update 2023.10.02</p> | ||
<div className="flex items-center"> | ||
<p className="F2">제작자 소개</p> | ||
<button onClick={handlePress} className="ml-2 mt-[-2px]"> | ||
<RightArrowIcon /> | ||
</button> | ||
</div> | ||
<div className="mt-4"> | ||
<p className="F3">Copyright © GDSC DGU</p> | ||
</div> | ||
</div> | ||
<div> | ||
<h1 className="F1">Contact</h1> | ||
<div className="contact-item"> | ||
<p className="F2 label-width">이메일</p> | ||
<p className="F2">[email protected]</p> | ||
</div> | ||
<div className="contact-item"> | ||
<p className="F2 label-width">주소</p> | ||
<p className="F2">서울특별시 중구 필동로1길 30</p> | ||
</div> | ||
</div> | ||
</div> | ||
</footer> | ||
); | ||
}; | ||
|
||
export default Footer; |
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
10 changes: 9 additions & 1 deletion
10
src/components/timeline/section/TimelineMonthlyCardSection.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
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
Oops, something went wrong.