Skip to content

Commit 5d0e053

Browse files
hchangclaude
andcommitted
style: 헤더 로그인 버튼을 LogIn 아이콘으로 변경
- 텍스트 '로그인' 대신 lucide-react LogIn 아이콘 사용 - 프로필 버튼과 동일한 크기(9x9)로 일관성 유지 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 758109b commit 5d0e053

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

moducon-frontend/src/components/layout/Header.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import Link from 'next/link';
44
import Image from 'next/image';
55
import { usePathname } from 'next/navigation';
66
import { useAuthStore } from '@/store/authStore';
7-
import { Home } from 'lucide-react';
7+
import { Home, LogIn } from 'lucide-react';
88

99
export function Header() {
1010
const pathname = usePathname();
@@ -55,9 +55,9 @@ export function Header() {
5555
) : (
5656
<Link
5757
href="/login"
58-
className="px-3 py-1.5 rounded-full bg-white/20 hover:bg-white/30 text-white text-sm font-medium transition-colors border border-white/50"
58+
className="w-9 h-9 rounded-full bg-white/20 hover:bg-white/30 flex items-center justify-center transition-colors border border-white/50"
5959
>
60-
로그인
60+
<LogIn className="w-5 h-5 text-white" />
6161
</Link>
6262
)}
6363
</div>

0 commit comments

Comments
 (0)