From e3033ee19eca498980fe977b006e16b32c616711 Mon Sep 17 00:00:00 2001 From: NFish Date: Thu, 5 Jun 2025 18:18:27 +0800 Subject: [PATCH] rm: remove login-logo file use dify-logo instead --- web/app/signin/LoginLogo.tsx | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 web/app/signin/LoginLogo.tsx diff --git a/web/app/signin/LoginLogo.tsx b/web/app/signin/LoginLogo.tsx deleted file mode 100644 index 73dfb88205..0000000000 --- a/web/app/signin/LoginLogo.tsx +++ /dev/null @@ -1,30 +0,0 @@ -'use client' -import type { FC } from 'react' -import classNames from '@/utils/classnames' -import { useGlobalPublicStore } from '@/context/global-public-context' -import { useTheme } from 'next-themes' - -type LoginLogoProps = { - className?: string -} - -const LoginLogo: FC = ({ - className, -}) => { - const { systemFeatures } = useGlobalPublicStore() - const { theme } = useTheme() - - let src = theme === 'light' ? '/logo/logo-site.png' : `/logo/logo-site-${theme}.png` - if (systemFeatures.branding.enabled) - src = systemFeatures.branding.login_page_logo - - return ( - logo - ) -} - -export default LoginLogo