brand: 替换品牌名称为嘉驰英才,使用新Logo

- 登录页/注册页/忘记密码/员工端登录:品牌名改为嘉驰英才
- 登录页公司全称:嘉驰英才(上海)信息科技有限公司
- Logo组件改为使用 JClog.png 图片
- 全局替换所有"安职通"为"嘉驰英才"

Generated with [Devin](https://devin.ai)

Co-Authored-By: Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com>
This commit is contained in:
selfrelease
2026-08-17 10:56:10 +08:00
parent 6919f997c6
commit 99aa6d6998
12 changed files with 25 additions and 31 deletions
+2 -8
View File
@@ -1,5 +1,5 @@
/**
* 应用 Logo 图标 — 与 favicon.svg 保持一致
* 应用 Logo — 嘉驰英才品牌图标
*/
interface LogoProps {
@@ -8,12 +8,6 @@ interface LogoProps {
export default function Logo({ className = 'w-5 h-5' }: LogoProps) {
return (
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" className={className} fill="none">
<rect width="32" height="32" rx="6" fill="currentColor" />
<path d="M16 6 L24 10 L24 16 L16 20 L8 16 L8 10 Z" stroke="white" strokeWidth="1.5" strokeLinejoin="round" />
<circle cx="16" cy="13" r="2" fill="white" />
<path d="M12 24 L12 20 M20 24 L20 20 M16 22 L16 20" stroke="white" strokeWidth="1.5" strokeLinecap="round" />
<rect x="10" y="24" width="12" height="2" rx="1" fill="white" />
</svg>
<img src="/JClog.png" alt="嘉驰英才" className={className} />
)
}