import * as React from 'react'; import styled from 'styled-components'; import Container from './Container'; const FooterWrapper = styled.footer` margin-top: 2rem; padding: 1rem 0; border-top: 1px solid var(--base02); text-align: center; p { margin: 0; } `; const Footer = () => (

designed by{' '} ~resir014 .{' '} backend work by{' '} ~karlen .

view the code

); export default Footer;