/** * 非遗文化传承网站 - 页脚组件 */ import React from 'react' import { Link } from 'react-router-dom' import { Row, Col, Space, Typography, Divider } from 'antd' import { WechatOutlined, WeiboOutlined, MailOutlined, PhoneOutlined, EnvironmentOutlined, } from '@ant-design/icons' import './Footer.css' const { Title, Text, Paragraph } = Typography const Footer: React.FC = () => { const currentYear = new Date().getFullYear() return ( ) } export default Footer