-
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
Showing
1 changed file
with
22 additions
and
21 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -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> | ||
); | ||
} | ||
|