2025-10-02 14:34:15 +09:00
|
|
|
import Image from "next/image";
|
2025-08-21 09:41:46 +09:00
|
|
|
import { UI_CONFIG } from "@/constants/auth";
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 로그인 페이지 헤더 컴포넌트
|
|
|
|
|
*/
|
|
|
|
|
export function LoginHeader() {
|
|
|
|
|
return (
|
|
|
|
|
<div className="text-center">
|
2025-10-02 14:34:15 +09:00
|
|
|
<div className="mx-auto mb-2 flex items-center justify-center">
|
|
|
|
|
<Image
|
|
|
|
|
src="/images/vexplor.png"
|
|
|
|
|
alt={UI_CONFIG.COMPANY_NAME}
|
|
|
|
|
width={180}
|
|
|
|
|
height={60}
|
|
|
|
|
className="object-contain"
|
|
|
|
|
priority
|
|
|
|
|
/>
|
2025-08-21 09:41:46 +09:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|