Skip to content

Commit

Permalink
Modify PageFooter to Reflect Icons
Browse files Browse the repository at this point in the history
  • Loading branch information
dchen278 committed Apr 21, 2021
1 parent 1d18274 commit 8474878
Showing 1 changed file with 64 additions and 0 deletions.
64 changes: 64 additions & 0 deletions src/modules/core/components/PageFooter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import { Grid, Row, Col } from "react-bootstrap/lib";
import injectSheet from "react-jss";
import DescriptionLinks from "./DescriptionLinks";
import { Description } from "../types";
import { Instagram, Facebook, Linkedin, Github } from "../icons";

const styles = {
PageFooter: {
Expand Down Expand Up @@ -60,6 +61,52 @@ const styles = {
fontStyle: "normal",
fontWeight: 400,
paddingTop: "10px",
paddingRight: '10px',
"&:hover, &:active, &:focus": {
color: "#000",
textDecoration: "none"
}
},
Instagram: {
color: "#000",
fontSize: "25px",
fontWeight: 400,
paddingTop: "10px",
paddingRight: '10px',
"&:hover, &:active, &:focus": {
color: "#000",
textDecoration: "none"
}
},
Facebook: {
color: "#000",
fontSize: "25px",
fontWeight: 400,
paddingTop: "10px",
paddingRight: '10px',
"&:hover, &:active, &:focus": {
color: "#000",
textDecoration: "none"
}
},
// might be a little redundant
Github: {
color: "#000",
fontSize: "25px",
fontWeight: 400,
paddingTop: "10px",
paddingRight: '10px',
"&:hover, &:active, &:focus": {
color: "#000",
textDecoration: "none"
}
},
Linkedin: {
color: "#000",
fontSize: "25px",
fontWeight: 400,
paddingTop: "10px",
paddingRight: '10px',
"&:hover, &:active, &:focus": {
color: "#000",
textDecoration: "none"
Expand Down Expand Up @@ -169,6 +216,23 @@ const PageFooter: React.SFC<PageFooterProps> = ({
<Link to="/" className={classes.theSpectator}>
The Spectator
</Link>
<a href="https://www.instagram.com/stuyspectator/"
className={classes.Instagram}>
<Instagram />
</a>
<a href="https://www.facebook.com/stuyspectator"
className={classes.Facebook}>
<Facebook />
</a>
{/* {Might add back later} */}
{/* <a href="https://github.com/stuyspec"
className={classes.Github}>
<Github/>
</a> */}
<a href="https://www.linkedin.com/company/the-stuyvesant-spectator"
className={classes.Linkedin}>
<Linkedin/>
</a>
</Col>
<Col
xs={12}
Expand Down

0 comments on commit 8474878

Please sign in to comment.