You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

33 lines
671 B

import React from "react";
import styled from "styled-components";
const Footer = styled.div`
width: 100%;
margin-top: 2rem;
margin-bottom: 1rem;
`;
const Line = styled.p`
color: white;
text-align: center;
`;
const Link = styled.a`
color: white;
`;
export default () => {
return (
<Footer>
<Line>Copyright © 2020 Garrit Franke</Line>
<Line>
Licensed under the{" "}
<Link href="https://mit-license.org/">MIT License</Link>. The source
code for this website can be found{" "}
<Link href="https://github.com/garritfra/garritfra.github.io">
here
</Link>
</Line>
</Footer>
);
};