Skip to content

Commit

Permalink
Design: Footer 모바일 기반 뷰
Browse files Browse the repository at this point in the history
  • Loading branch information
whateveriiwant committed Oct 13, 2023
1 parent f07fc61 commit da93c39
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions front/src/components/Footer/Footer.tsx
Expand Up @@ -13,29 +13,33 @@ const Footer = () => {
path === "/" ? "fixed bottom-[0px]" : "relative"
} h-32 flex flex-row items-center justify-center`}
>
<img src={logo} alt="logo" className="w-auto h-32" />
<img src={logo} alt="logo" className="w-auto h-20 md:h-32" />
<div className="flex flex-col items-start justify-start ml-[30px]">
<p className="font-main text-[rgb(61,125,71)] text-sm">
<p className="font-main text-[rgb(61,125,71)] text-xs md:text-sm">
©2023 HandTalker
</p>
<p className="font-main text-[rgb(61,125,71)] text-sm">
<p className="font-main text-[rgb(61,125,71)] text-xs md:text-sm">
DEVOCEAN YOUNG 2nd 404 Team
</p>
<p className="font-main text-[rgb(61,125,71)] text-sm">
<p className="font-main text-[rgb(61,125,71)] text-xs md:text-sm">
곽수진, 송보경, 정승준, 지현빈
</p>
<div className="flex flex-row items-center justify-center mt-[10px]">
<div className="flex flex-row items-center justify-center mt-[5px] md:mt-[10px]">
<a
href="https://github.com/DEVOCEAN-YOUNG-404/HandTalker"
target="_blank"
rel="noreferrer"
>
<p className="text-[rgb(61,125,71)] text-[30px] mr-[5px]">
<p className="text-[rgb(61,125,71)] text-[23px] md:text-[30px] mr-[5px]">
<AiFillGithub />
</p>
</a>
<a href="https://devocean.sk.com/" target="_blank" rel="noreferrer">
<img src={devocean} alt="devocean" className="w-[27px]" />
<img
src={devocean}
alt="devocean"
className="w-[20px] md:w-[27px]"
/>
</a>
</div>
</div>
Expand Down

0 comments on commit da93c39

Please sign in to comment.