aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/components/Footer.js
blob: c7878e5219509823576a556066a0e71ca6981b8b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import React from 'react';
import styled from 'styled-components'

const SpacedFooter = styled.div`
    margin: 2em 0;
`

const Link = (props) => {
    return (
        <a href={props.link} target="_blank" rel="noopener noreferrer">{props.name}</a>
    );
}

const Footer = () => {
    return (
        <SpacedFooter>
            © 2020 &mdash; <Link link="https://jzhao.xyz/" name="jacky" />, <Link link="https://ryanmehri.tech/" name="ryan" />
        </SpacedFooter>
    );
}

export default Footer;