23 lines
509 B
TypeScript
23 lines
509 B
TypeScript
import Image from "next/image";
|
|
import { UI_CONFIG } from "@/constants/auth";
|
|
|
|
/**
|
|
* 로그인 페이지 헤더 컴포넌트
|
|
*/
|
|
export function LoginHeader() {
|
|
return (
|
|
<div className="text-center">
|
|
<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
|
|
/>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|