import React from 'react' import PropTypes from 'prop-types' import Social from './Social' import './Footer.scss' const Footer = ({ meta }) => { const year = new Date().getFullYear() return } Footer.propTypes = { meta: PropTypes.object, } export default Footer