import * as React from "react"; import styled from "styled-components"; const FooterSection = styled.footer` flex: 0; `; const Text = styled.p` font-size: 0.8em; color: #666; text-align: center; margin: 0.4em 0; & a { color: #5d5d5d; } `; const Footer = () => ( Install this Chrome Extension from{" "} Chrome Web Store . Developed by Yao Wang.{" "} Inspired by mainichi.me. Logo is borrowed from Freepik. ); export default Footer;