Browse Source

uscg logo

Matthew Trejo 3 months ago
parent
commit
390060b33f
2 changed files with 9 additions and 1 deletions
  1. 1 0
      public/logo.svg
  2. 8 1
      src/components/layout/sidebar.tsx

File diff suppressed because it is too large
+ 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>

Some files were not shown because too many files changed in this diff