From 92986f50ee2b4a5a82a952329a4b4202e107a945 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cdongming=E2=80=9D?= <“lidongming@aituringflow.com”> Date: Mon, 29 Dec 2025 01:23:20 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E4=BF=AE=E5=A4=8D=E5=9B=BE=E6=A0=87?= =?UTF-8?q?=E5=AF=BC=E5=85=A5=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Footer.tsx | 14 +++++++------- vite.config.ts | 1 + 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx index 85b71bc..dccfbdd 100644 --- a/src/components/Footer.tsx +++ b/src/components/Footer.tsx @@ -6,9 +6,9 @@ import { Mail, MapPin, Clock, - Wechat, - Weibo, - Linkedin, + MessageCircle, + Share2, + Linkedin as LinkedinIcon, ArrowRight, } from 'lucide-react'; import { @@ -44,9 +44,9 @@ const itemVariants = { // 图标映射 const iconMap: Record> = { - Wechat, - Weibo, - Linkedin, + Wechat: MessageCircle, + Weibo: Share2, + Linkedin: LinkedinIcon, }; /** @@ -180,7 +180,7 @@ export const Footer: React.FC = () => {

{SOCIAL_MEDIA.map((social) => { - const Icon = iconMap[social.icon] || Wechat; + const Icon = iconMap[social.icon] || MessageCircle; return (