import BLOG from '@/blog.config' import { faEye, faShieldAlt, faUsers } from '@fortawesome/free-solid-svg-icons' import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' function SiteInfo ({ title }) { const d = new Date() const currentYear = d.getFullYear() const startYear = BLOG.SINCE && BLOG.SINCE !== currentYear && BLOG.SINCE + '-' return ( ) } export default SiteInfo