修正 logo

This commit is contained in:
2025-09-25 15:02:44 +08:00
parent 2765d9df54
commit 18a6583c6b
3 changed files with 18 additions and 6 deletions

View File

@@ -6,6 +6,7 @@ import { Button } from "@/components/ui/button"
import { Brain, Lightbulb, BarChart3, Users, Settings, Menu, ChevronDown } from "lucide-react"
import { Sheet, SheetContent, SheetHeader, SheetTitle, SheetTrigger } from "@/components/ui/sheet"
import Link from "next/link"
import Image from "next/image"
import { useAuth } from "@/lib/hooks/use-auth"
import { useRouter } from "next/navigation"
import { ProtectedRoute } from "@/components/protected-route"
@@ -368,8 +369,14 @@ export default function HomePage() {
<div className="flex flex-col md:flex-row justify-between items-center gap-4">
{/* 左側內容 */}
<div className="flex items-center gap-3">
<div className="w-8 h-8 bg-primary rounded-lg flex items-center justify-center">
<Users className="w-4 h-4 text-primary-foreground" />
<div className="w-8 h-8 rounded-lg overflow-hidden flex items-center justify-center">
<Image
src="/solution.png"
alt="HR 評估系統 Logo"
width={32}
height={32}
className="object-contain"
/>
</div>
<div>
<span className="text-lg font-semibold">HR </span>

View File

@@ -17,7 +17,12 @@ const jetbrainsMono = JetBrains_Mono({
export const metadata: Metadata = {
title: "HR 評估系統",
description: "專業的員工能力測評平台",
generator: 'v0.app'
generator: 'v0.app',
icons: {
icon: '/solution.png',
shortcut: '/solution.png',
apple: '/solution.png',
},
}
export default function RootLayout({

BIN
public/solution.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB