Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 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 36 37 38 39 40 41 42 43 44 45 | 61x 1188x 1188x | import React from 'react';
import Grid from '@material-ui/core/Grid';
import useStyles from './styles';
import Typography from '@material-ui/core/Typography';
const SocialSection = ({ size }) => {
const classes = useStyles()
return (
<div
className={size !== 'lg'
? `${classes.sectionPaddingSm}`
: `${classes.containerItem}`
}
>
<Grid
container direction='column'
spacing={size !== 'lg' ? 4 : 0}
className={size === 'lg' ? classes.socialContainerLarge : null}
>
<Grid item >
<Typography variant='h6' color='textSecondary' className={classes.linkTypography}>Follow Us</Typography>
</Grid>
<Grid item className={size !== 'lg' ? classes.socialContainer : classes.socialIcons}>
<a href='https://www.instagram.com/civictechindex'>
<img src='/images/insta-logo.svg' alt='Instagram logo' />
</a>
<a href='https://twitter.com/civictechindex'>
<img src='/images/twitter-logo.svg' alt='Twitter logo' />
</a>
<a href='https://www.facebook.com/civictechindex'>
<img src='/images/fb-logo.svg' alt='Facebook logo' />
</a>
<a href='https://github.com/civictechindex'>
<img src='/images/github-logo.svg' alt='GitHub logo' />
</a>
</Grid>
</Grid>
</div>
)
};
export default SocialSection;
|