Footer.js 944 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. import React from 'react';
  2. import styled from 'styled-components';
  3. const Wrapper = styled.footer`
  4. width: 100%;
  5. display: flex;
  6. justify-content: center;
  7. padding: 4px 0;
  8. background-color: white;
  9. a {
  10. text-decoration: none;
  11. color: #2196f3;
  12. }
  13. `;
  14. const Text = styled.p`
  15. font-size: 13px;
  16. font-weight: 300;
  17. color: #666;
  18. @media only screen and (max-width: 768px) {
  19. font-size: 11px;
  20. }
  21. `;
  22. const Footer = () => (
  23. <Wrapper>
  24. <Text>
  25. Made with love by{' '}
  26. <a href="//thedevs.network/" title="The Devs">
  27. The Devs
  28. </a>.{' | '}
  29. <a
  30. href="https://github.com/thedevs-network/kutt"
  31. title="GitHub"
  32. target="_blank" // eslint-disable-line react/jsx-no-target-blank
  33. >
  34. GitHub
  35. </a>
  36. {' | '}
  37. <a href="/terms" title="Terms of Service" target="_blank">
  38. Terms of Service
  39. </a>.
  40. </Text>
  41. </Wrapper>
  42. );
  43. export default Footer;