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