-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #626 from pennlabs/aag/footer
Add footer with feedback link to PDP
- Loading branch information
Showing
2 changed files
with
41 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
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> | ||
{ | ||
// TODO: uncomment once out of beta | ||
// <Link href="https://airtable.com/appFRa4NQvNMEbWsA/shrzXeuiEFF8OD89P">here!</Link> | ||
} | ||
</Wrapper> | ||
); | ||
|
||
export default Footer; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters