소스 검색

uscg logo

Matthew Trejo 3 달 전
부모
커밋
390060b33f
2개의 변경된 파일9개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 0
      public/logo.svg
  2. 8 1
      src/components/layout/sidebar.tsx

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 1 - 0
public/logo.svg


+ 8 - 1
src/components/layout/sidebar.tsx

@@ -24,6 +24,7 @@ import {
   User,
   Layers
 } from 'lucide-react'
+import Image from 'next/image'
 
 interface SidebarProps {
   className?: string
@@ -85,7 +86,13 @@ function SidebarContent({ className }: SidebarProps) {
       {/* Header */}
       <div className="p-6">
         <div className="flex items-center gap-2">
-          <GraduationCap className="h-8 w-8 text-red-600" />
+          <Image 
+            src="/logo.svg" 
+            alt="UCSG Logo" 
+            width={32} 
+            height={32} 
+            className="h-8 w-8"
+          />
           <div>
             <p className="text-xs text-gray-400 opacity-50">TAPIR</p>
             <h1 className="text-xl font-bold text-gray-900">UCSG</h1>

이 변경점에서 너무 많은 파일들이 변경되어 몇몇 파일들은 표시되지 않았습니다.