import { Typography, Space, Divider } from 'antd'; import { GithubOutlined, CopyrightOutlined, HeartFilled, ClockCircleOutlined } from '@ant-design/icons'; import { VERSION_INFO, getVersionString } from '../config/version'; const { Text, Link } = Typography; export default function AppFooter() { const isMobile = window.innerWidth <= 768; return (
{isMobile ? ( // 移动端:紧凑单行布局
{VERSION_INFO.projectName} {getVersionString()} {VERSION_INFO.buildTime}
) : ( // PC端:完整布局 } style={{ display: 'flex', justifyContent: 'center', alignItems: 'center' }} > {/* 版本信息 */} {VERSION_INFO.projectName} {getVersionString()} {/* GitHub 链接 */} GitHub {/* LinuxDO 社区 */} LinuxDO 社区 {/* 许可证 */} {VERSION_INFO.license} {/* 更新时间 */} {VERSION_INFO.buildTime} {/* 致谢信息 */} Made with by {VERSION_INFO.author} )}
); }