From 2556dfd6f1a489e51467e6bb7af77378216e7fc8 Mon Sep 17 00:00:00 2001 From: zhanggangyong Date: Sun, 11 Jan 2026 18:12:06 +0000 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=9B=BF=E6=8D=A2=E5=B9=B3=E5=8F=B0log?= =?UTF-8?q?o=E5=B9=B6=E7=A7=BB=E9=99=A4=E6=B5=8F=E8=A7=88=E5=99=A8?= =?UTF-8?q?=E6=A0=87=E7=AD=BE=E9=A1=B5=E6=A0=87=E9=A2=98=E5=92=8C=E5=9B=BE?= =?UTF-8?q?=E6=A0=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将平台logo替换为logo.jpg - 在登录页面和侧边栏使用新的logo图片 - 移除浏览器标签页的标题和图标配置 - 删除旧的图标文件 --- app/layout.tsx | 19 +------------------ app/login/page.tsx | 12 ++++++++++-- components/dashboard-layout.tsx | 22 ++++++++++++++-------- public/apple-icon.png | Bin 2626 -> 0 bytes public/icon-dark-32x32.png | Bin 585 -> 0 bytes public/icon-light-32x32.png | Bin 566 -> 0 bytes public/icon.svg | 26 -------------------------- public/logo.jpg | Bin 0 -> 170034 bytes 8 files changed, 25 insertions(+), 54 deletions(-) delete mode 100644 public/apple-icon.png delete mode 100644 public/icon-dark-32x32.png delete mode 100644 public/icon-light-32x32.png delete mode 100644 public/icon.svg create mode 100644 public/logo.jpg diff --git a/app/layout.tsx b/app/layout.tsx index 508bc83..4feae72 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -12,26 +12,9 @@ const _geist = Geist({ subsets: ["latin"] }) const _geistMono = Geist_Mono({ subsets: ["latin"] }) export const metadata: Metadata = { - title: "Taiji AI Platform - Agent Empowerment", + title: "", description: "Enterprise-grade AI Agent orchestration and management platform", generator: "v0.app", - icons: { - icon: [ - { - url: "/icon-light-32x32.png", - media: "(prefers-color-scheme: light)", - }, - { - url: "/icon-dark-32x32.png", - media: "(prefers-color-scheme: dark)", - }, - { - url: "/icon.svg", - type: "image/svg+xml", - }, - ], - apple: "/apple-icon.png", - }, } export default function RootLayout({ diff --git a/app/login/page.tsx b/app/login/page.tsx index 3779643..bc55c5b 100644 --- a/app/login/page.tsx +++ b/app/login/page.tsx @@ -3,6 +3,7 @@ import type React from "react" import { useState, useEffect } from "react" +import Image from "next/image" import { Button } from "@/components/ui/button" import { Input } from "@/components/ui/input" import { Label } from "@/components/ui/label" @@ -230,8 +231,15 @@ export default function LoginPage() {
{/* Logo and Header */}
-
-
+
+ Taiji AI Platform Logo

{t("Taiji AI 平台", "Taiji AI Platform")}

{t("企业级 AI Agent 赋能平台", "Enterprise AI Agent Empowerment")}

diff --git a/components/dashboard-layout.tsx b/components/dashboard-layout.tsx index 5e217d9..4ddfd54 100644 --- a/components/dashboard-layout.tsx +++ b/components/dashboard-layout.tsx @@ -4,6 +4,7 @@ import type React from "react" import { useState, useEffect } from "react" import Link from "next/link" +import Image from "next/image" import { usePathname } from "next/navigation" import { TaijiAPIClient } from "@/lib/api-client" import { cn } from "@/lib/utils" @@ -305,14 +306,19 @@ export function DashboardLayout({ children }: { children: React.ReactNode }) { > {/* Logo */}
- {!collapsed && ( - -
- -
- Taiji AI - - )} + +
+ Taiji AI Platform Logo +
+ {!collapsed && Taiji AI} +