diff --git a/client/assets/facebook-round.svg b/client/assets/facebook-round.svg index a9d6b33e8..34c931e89 100644 --- a/client/assets/facebook-round.svg +++ b/client/assets/facebook-round.svg @@ -1,6 +1,6 @@ \ No newline at end of file diff --git a/client/assets/twitter-round.svg b/client/assets/twitter-round.svg index af18df7f0..cf7f26671 100644 --- a/client/assets/twitter-round.svg +++ b/client/assets/twitter-round.svg @@ -1,6 +1,6 @@ \ No newline at end of file diff --git a/client/components/Footer.jsx b/client/components/Footer.jsx index fc4de9125..334a67e4e 100644 --- a/client/components/Footer.jsx +++ b/client/components/Footer.jsx @@ -1,12 +1,11 @@ import React from 'react'; import { connect } from 'react-redux'; import PropTypes from 'proptypes'; -import { - Container, - Typography, -} from '@material-ui/core'; +import { Container, Typography } from '@material-ui/core'; import { makeStyles } from '@material-ui/core/styles'; import moment from 'moment'; +import { Link } from 'react-router-dom'; +import SocialMediaLinks from './SocialMediaLinks'; const useStyles = makeStyles(theme => ({ footer: { @@ -22,22 +21,48 @@ const useStyles = makeStyles(theme => ({ fontSize: '14px', fontFamily: 'Roboto', }, + copyright: { + fontSize: '14px', + lineHeight: theme.footer.height, + color: theme.palette.text.dark, + }, + container: { + display: 'flex', + flexDirection: 'row', + justifyContent: 'space-between', + }, + copyrightContainer: { + display: 'flex', + flexDirection: 'row', + justifyContent: 'center', + }, + link: { + color: theme.palette.text.dark, + textDecoration: 'none', + }, })); // TODO: check with UI/UX re placement of social media, privacy policy links -const Footer = ({ - lastUpdated, -}) => { +const Footer = ({ lastUpdated }) => { const classes = useStyles(); return (