diff options
Diffstat (limited to 'frontend/src/components/Footer.js')
| -rw-r--r-- | frontend/src/components/Footer.js | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/frontend/src/components/Footer.js b/frontend/src/components/Footer.js new file mode 100644 index 0000000..ecd85e1 --- /dev/null +++ b/frontend/src/components/Footer.js @@ -0,0 +1,22 @@ +import React from 'react'; +import styled from 'styled-components' + +const SpacedFooter = styled.div` + margin: 1em 0; +` + +const Link = (props) => { + return ( + <a href={props.link} target="_blank" rel="noopener noreferrer">{props.name}</a> + ); +} + +const Footer = () => { + return ( + <SpacedFooter> + © 2020 — <Link link="https://jzhao.xyz/" name="jacky" />, <Link link="https://ryanmehri.tech/" name="ryan" /> + </SpacedFooter> + ); +} + +export default Footer;
\ No newline at end of file |