footer.js 365 B

1234567891011121314151617
  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.lighterblue};
  8. min-height: 75px;
  9. border-top: 1px solid ${theme.colors.darkblue};
  10. color: ${theme.colors.darkerblue};
  11. }
  12. `}</style>
  13. </footer>
  14. )
  15. export default Footer