Skip to content

Commit 1a6b06d

Browse files
committed
Style: footer아이콘 크기 수정
1 parent f35885a commit 1a6b06d

File tree

2 files changed

+6
-9
lines changed

2 files changed

+6
-9
lines changed

components/footer.tsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
import Link from "next/link";
22
import { FaGithub, FaEnvelope } from "react-icons/fa";
3-
import { BsChatSquare } from "react-icons/bs"; // 카카오톡 아이콘 대체 (BsChatSquare 사용)
3+
import { RiKakaoTalkFill } from "react-icons/ri";
44

55
export default function Footer() {
66
return (
77
<div className="flex justify-end items-center h-16 border-t max-w-screen-2xl w-full mx-auto px-10 mb-10">
88
<div className="text-sm text-muted-foreground mt-10">
99
<div className="w-full flex items-center justify-end gap-4">
10-
<Link href="https://github.com/your-username" target="_blank">
11-
<FaGithub size={20} />
10+
<Link href="https://github.com/lazy-dinosaur" target="_blank">
11+
<FaGithub size={18} />
1212
</Link>
13-
<Link href="mailto:your-email@example.com" target="_blank">
14-
<FaEnvelope size={20} />
13+
<Link href="mailto:woohs0130@naver.com" target="_blank">
14+
<FaEnvelope size={18} />
1515
</Link>
1616
<Link href="https://kakaotalk-link" target="_blank">
17-
<BsChatSquare size={20} />{" "}
17+
<RiKakaoTalkFill size={18} />
1818
{/* 카카오톡 전용 ��이콘 없을 경우 채팅 아이콘으로 대체 */}
1919
</Link>
2020
</div>

components/header.tsx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -163,9 +163,6 @@ export default function Header() {
163163
className="rounded-full h-8 w-8 sm:h-9 sm:w-9 md:h-10 md:w-10"
164164
>
165165
<Search className="absolute h-[1rem] w-[1rem] sm:h-[1.2rem] sm:w-[1.2rem] rotate-90 transition-all" />
166-
{/* <kbd className="pointer-events-none hidden md:inline-flex h-5 select-none items-center gap-1 rounded border bg-muted px-1.5 font-mono text-[10px] font-medium text-muted-foreground opacity-100"> */}
167-
{/* <span className="text-xs">⌘</span>K */}
168-
{/* </kbd> */}
169166
</Button>
170167
</div>
171168
<CommandDialog open={open} onOpenChange={setOpen}>

0 commit comments

Comments
 (0)