footer.js 305 B

12345678910111213141516
  1. import theme from '../styles/theme'
  2. const Footer = props => (
  3. <footer>
  4. <p>Footer</p>
  5. <style jsx>{`
  6. footer {
  7. background-color: ${theme.colors.darkgrey};
  8. min-height: 125px;
  9. color: ${theme.colors.offWhite};
  10. }
  11. `}</style>
  12. </footer>
  13. )
  14. export default Footer