+
+
+ ©311 Data All Rights Reserved |
+
+ Privacy Policy
+
+ | Powered by volunteers from Hack for LA |
+
+
+
- Data Updated Through:
-
- {moment(lastUpdated).format('MMMM Do YYYY, h:mm:ss a')}
+ Data updated:
+ {moment(lastUpdated).format('MM/DD/YY')}
)}
diff --git a/client/components/SocialMediaLinks.jsx b/client/components/SocialMediaLinks.jsx
new file mode 100644
index 000000000..19a71c871
--- /dev/null
+++ b/client/components/SocialMediaLinks.jsx
@@ -0,0 +1,50 @@
+import React from 'react';
+import { makeStyles } from '@material-ui/core/styles';
+
+import TwitterSVG from '../assets/twitter-round.svg';
+import FacebookSVG from '../assets/facebook-round.svg';
+
+const useStyles = makeStyles(theme => ({
+ socialMedia: {
+ display: 'flex',
+ flexDirection: 'row',
+ lineHeight: theme.footer.height,
+ justifyContent: 'space-between',
+ width: '37px',
+ marginLeft: '5px',
+ alignContent: 'center',
+ },
+ image: {
+ filter:
+ ' invert(85%) sepia(0%) saturate(0%) hue-rotate(53deg) brightness(94%) contrast(88%)',
+ width: '16px',
+ height: '16px',
+ verticalAlign: 'middle',
+ },
+}));
+
+const SocialMediaLinks = () => {
+ const classes = useStyles();
+ return (
+