import { BeiAnGongAn } from '@/components/BeiAnGongAn' import { siteConfig } from '@/lib/config' import SocialButton from './SocialButton' /** * 站點也叫 * @param {*} param0 * @returns */ const Footer = ({ siteInfo }) => { const d = new Date() const currentYear = d.getFullYear() const since = siteConfig('SINCE') const copyrightDate = parseInt(since) < currentYear ? since + '-' + currentYear : currentYear return ( ) } export default Footer