import React from 'react' import BLOG from '@/blog.config' import { siteConfig } from '@/lib/config' const Footer = ({ siteInfo }) => { const d = new Date() const currentYear = d.getFullYear() const copyrightDate = (function () { if (Number.isInteger(BLOG.SINCE) && BLOG.SINCE < currentYear) { return BLOG.SINCE + '-' + currentYear } return currentYear })() return ( ) } export default Footer