/** * 博客底部组件 * * @author CodeBuddy * @date 2025-09-18 */ import { Link } from 'react-router-dom' import { Heart, Github, Mail, Rss } from 'lucide-react' import { Button } from '@/components/ui/button' /** * 博客底部组件 * 包含版权信息、ICP备案号、友情链接等 */ export function BlogFooter() { const currentYear = new Date().getFullYear() return ( ) }