import React from "react"; // 移除图标导入 // import { FaTwitter, FaYoutube, FaGithub, FaLinkedin } from "react-icons/fa"; // import { IconContext } from "react-icons"; const footerStyle = { background: "#f7fafc", color: "#4a5568", marginTop: "40px" }; const containerStyle = { maxWidth: "1200px", margin: "0 auto", padding: "40px 16px" }; const gridStyle = { display: "grid", gridTemplateColumns: "2fr 1fr 1fr 1fr", gap: "32px" }; const stackStyle = { display: "flex", flexDirection: "column" as const, gap: "24px" }; const headingStyle = { color: "#3182ce", fontSize: "16px", fontWeight: "bold" }; const textStyle = { fontSize: "14px" }; const socialIconsStyle = { display: "flex", flexDirection: "row" as const, gap: "24px" }; const iconStyle = { color: "#718096", fontSize: "20px", width: "20px", height: "20px" }; export default function Footer() { const currentYear = new Date().getFullYear(); return ( ); }