16 lines
435 B
TypeScript
16 lines
435 B
TypeScript
import { LAYOUT_CONFIG } from "@/constants/layout";
|
|
|
|
/**
|
|
* 로고 컴포넌트
|
|
*/
|
|
export function Logo() {
|
|
return (
|
|
<div className="flex items-center gap-2">
|
|
<div className="bg-primary flex h-8 w-8 items-center justify-center rounded-lg">
|
|
<span className="text-primary-foreground text-sm font-bold">P</span>
|
|
</div>
|
|
<span className="font-semibold">{LAYOUT_CONFIG.COMPANY_NAME}</span>
|
|
</div>
|
|
);
|
|
}
|