diff options
| author | jackyzha0 <[email protected]> | 2020-05-10 15:43:35 -0700 |
|---|---|---|
| committer | jackyzha0 <[email protected]> | 2020-05-10 15:43:35 -0700 |
| commit | 4545db101abfdcac91cc7cabf7bde180b54e9be9 (patch) | |
| tree | 9b437efad909ea324f039c555d52d150d92a4583 /frontend/src/components/Footer.js | |
| parent | Merge pull request #10 from jackyzha0/react (diff) | |
| download | ctrl-v-4545db101abfdcac91cc7cabf7bde180b54e9be9.tar.xz ctrl-v-4545db101abfdcac91cc7cabf7bde180b54e9be9.zip | |
add password stuff + expiry stuff
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 |