瀏覽代碼

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>

部分文件因文件數量過多而無法顯示