1
0
mirror of https://github.com/kremalicious/portfolio.git synced 2025-02-14 21:10:41 +01:00

22 lines
442 B
JavaScript

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 className="footer">
<Social meta={meta} minimal />
<small>
&copy; {year} {meta.title} &mdash; All Rights Reserved
</small>
</footer>
}
Footer.propTypes = {
meta: PropTypes.object,
}
export default Footer