ERP-node/frontend/components/layout/Logo.tsx

24 lines
572 B
TypeScript
Raw Normal View History

2025-08-21 09:41:46 +09:00
import { LAYOUT_CONFIG } from "@/constants/layout";
2025-09-26 17:12:03 +09:00
import Image from "next/image";
2025-08-21 09:41:46 +09:00
/**
*
*/
export function Logo() {
return (
<div className="flex items-center gap-2">
2025-09-26 17:12:03 +09:00
<div className="flex items-center justify-center">
<Image
src="/images/vexplor.png"
alt="WACE 솔루션 로고"
width={120}
height={32}
className="h-8 object-contain"
priority
/>
2025-08-21 09:41:46 +09:00
</div>
2025-09-26 17:12:03 +09:00
{/* <span className="font-semibold">{LAYOUT_CONFIG.COMPANY_NAME}</span> */}
2025-08-21 09:41:46 +09:00
</div>
);
}