최초커밋
This commit is contained in:
15
frontend/components/layout/Logo.tsx
Normal file
15
frontend/components/layout/Logo.tsx
Normal file
@@ -0,0 +1,15 @@
|
||||
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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user