-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathFooter.tsx
35 lines (31 loc) · 908 Bytes
/
Footer.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import styled from "@emotion/styled";
const Wrapper = styled.div`
color: #999999;
font-size: 0.8rem;
text-align: center;
bottom: 15px;
width: 100%;
padding-bottom: 1rem;
line-height: 1.5;
`;
const Link = styled.a`
color: rgb(50, 115, 220);
`
const Footer = () => (
<Wrapper>
Made with{" "}
<span className="icon is-small">
<i className="fa fa-heart" style={{ color: "red" }} />
</span>{" "}
by{" "}
<Link href="http://pennlabs.org" rel="noopener noreferrer" target="_blank">
Penn Labs
</Link>
.
Have feedback about Penn Degree Plan? Let us know {" "}
{// <Link href="mailto:[email protected]">[email protected]</Link>
}
<Link href="https://airtable.com/appFRa4NQvNMEbWsA/shr120VUScuNJywyv">here!</Link>
</Wrapper>
);
export default Footer;