Skip to content

Commit

Permalink
๐Ÿ’„Design: Footer ๋ฐ˜์‘ํ˜• ์ ์šฉ #46
Browse files Browse the repository at this point in the history
  • Loading branch information
puretension committed May 4, 2024
1 parent f9bf12f commit 7dbdfa9
Showing 1 changed file with 21 additions and 30 deletions.
51 changes: 21 additions & 30 deletions src/components/layout/footer/Footer.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
'use client';
import React from 'react';
import RightArrowIcon from 'public/svg/icons/common/right_arrow.svg';
import CreatorLinkButton from "@/components/timeline/button/CreatorLinkButton";

/**
* @description
Expand All @@ -9,37 +8,29 @@ import RightArrowIcon from 'public/svg/icons/common/right_arrow.svg';
* @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>
<footer className="w-full py-10 bg-mono_900 flex justify-center">
<div className="max-w-[1200px] w-full desktop:px-10 tablet:px-10 px-4">
<div className="flex flex-col tablet:flex-row items-start tablet:items-center gap-10">
<div>
<h1 className="F1">About Us</h1>
<p className="F2">Final Update 2023.10.02</p>
<CreatorLinkButton />
<div className="mt-4">
<p className="F3">Copyright ยฉ GDSC DGU</p>
</div>
</div>
<div className="contact-item">
<p className="F2 label-width">์ฃผ์†Œ</p>
<p className="F2">์„œ์šธํŠน๋ณ„์‹œ ์ค‘๊ตฌ ํ•„๋™๋กœ1๊ธธ 30</p>
<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>
</div>
Expand Down

0 comments on commit 7dbdfa9

Please sign in to comment.