From 4044d23b4832a64d6e1c08c4206fa5f01681ff7c Mon Sep 17 00:00:00 2001 From: zhangheng Date: Wed, 29 Apr 2026 17:19:53 +0800 Subject: [PATCH] fix(login): fix logo --- components/login/index.tsx | 6 +- components/login/resource/icons/digital.tsx | 78 +++++++++++++++++++++ 2 files changed, 80 insertions(+), 4 deletions(-) diff --git a/components/login/index.tsx b/components/login/index.tsx index e71f153..c0af800 100644 --- a/components/login/index.tsx +++ b/components/login/index.tsx @@ -29,7 +29,7 @@ import { useCallback, useEffect, useMemo, useState } from "react" import { getVerifyCode, passwdLogin, verificationLogin } from "./api" import QrLogin from "./feishu/qr-login" import { APP, PLATFORM, TENANT } from "./libs/common" -import { DigitalIcon } from "./resource/icons/digital" +import { HeaderIcon } from "./resource/icons/digital" import { useLoginStore } from "./store" import tabClasses from "./Tab.module.css" // import { useSearchParams } from "next/navigation" @@ -41,9 +41,7 @@ import loginBg2Dark from "./resource/images/login-bg2-dark.png" import loginBg2Light from "./resource/images/login-bg2-light.png" import LogoDigImage from "./resource/images/logo-dig.png" -const HeaderIcon = DigitalIcon - -const headerTitle = "管理系统平台" +const headerTitle = "标注管理平台" export default function LoginPage({ useUserStore }: { useUserStore: any }) { const colorScheme = useComputedColorScheme() diff --git a/components/login/resource/icons/digital.tsx b/components/login/resource/icons/digital.tsx index 99c1bfe..6a21544 100644 --- a/components/login/resource/icons/digital.tsx +++ b/components/login/resource/icons/digital.tsx @@ -82,3 +82,81 @@ export const DigitalIcon = () => { ) } + +export const HeaderIcon = () => { + return ( + + + + + + + + + + + + + + + + + + + + + + + + + + + ) +}