import React from 'react'; import styled from 'styled-components'; const Wrapper = styled.footer` width: 100%; display: flex; justify-content: center; padding: 4px 0; background-color: white; a { text-decoration: none; color: #2196f3; } `; const Text = styled.p` font-size: 13px; font-weight: 300; color: #666; @media only screen and (max-width: 768px) { font-size: 11px; } `; const Footer = () => ( Made with love by{' '} The Devs .{' | '} GitHub {' | '} Terms of Service . ); export default Footer;