import React from 'react' import BLOG from '@/blog.config' const Footer = ({ title }) => { const d = new Date() const currentYear = d.getFullYear() const startYear = BLOG.SINCE && BLOG.SINCE !== currentYear && BLOG.SINCE + '-' return ( ) } export default Footer