Skip to content

Commit

Permalink
feat: add footer to compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
CChuYong committed Feb 26, 2024
1 parent 17f4c31 commit 6248f47
Showing 1 changed file with 22 additions and 21 deletions.
43 changes: 22 additions & 21 deletions components/layout/FooterBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,28 +5,29 @@ import Link from "next/link";

export default function FooterBar() {
return (
<footer className={"flex flex-col justify-center items-start w-full bg-2F2F32 py-6 px-6 text-8c8c8e"}>
<div className={"w-full flex-row justify-end items-end"}>
<ExternalLinks/>
<footer className={"w-full bg-2F2F32 py-6 px-6 text-8c8c8e "}>
<div className={"flex flex-col justify-center items-start max-w-screen-xl mx-auto w-full"}>
<div className={"w-full flex-row justify-end items-end"}>
<ExternalLinks/>
</div>
<div className={"h-3"}/>
<div>
<div className={"text-sm"}>문의 📩</div>
<div className={"text-xs"}>[email protected]</div>
</div>
<div className={"h-7"}/>
<div className={"flex flex-col justify-start text-xs gap-1.5 underline"}>
<Link href={"/0ed00a05cf74414898b8dbff7614683f"}>
<p>업데이트 소식</p>
</Link>
<Link href={"/25c80b13d89c4fefb908867b74bf6aa9"}>
<p>삐삐 이용 약관</p>
</Link>
<Link href={"/5a00bd90c7674a7e8413901334ee1b24"}>
<p>개인정보 처리방침</p>
</Link>
</div>
</div>
<div className={"h-3"}/>
<div>
<div className={"text-sm"}>문의 📩</div>
<div className={"text-xs"}>[email protected]</div>
</div>
<div className={"h-7"}/>
<div className={"flex flex-col justify-start text-xs gap-1.5 underline"}>
<Link href={"/0ed00a05cf74414898b8dbff7614683f"}>
<p>업데이트 소식</p>
</Link>
<Link href={"/25c80b13d89c4fefb908867b74bf6aa9"}>
<p>삐삐 이용 약관</p>
</Link>
<Link href={"/5a00bd90c7674a7e8413901334ee1b24"}>
<p>개인정보 처리방침</p>
</Link>
</div>

</footer>
);
}
Expand Down

0 comments on commit 6248f47

Please sign in to comment.