UNPKG

react-garden

Version:

React + TypeScript + ThreeJS app using Material UI on NextJS, Apollo Client, GraphQL + WordPress REST APIs, for ThreeD web development.. a part of the threed.ai code family.

53 lines (49 loc) 2.17 kB
// ** MUI Imports import Box from '@mui/material/Box' import Card from '@mui/material/Card' import Avatar from '@mui/material/Avatar' import Typography from '@mui/material/Typography' import CardContent from '@mui/material/CardContent' // ** Icons Imports import Heart from 'mdi-material-ui/Heart' import Linkedin from 'mdi-material-ui/Linkedin' import ShareVariant from 'mdi-material-ui/ShareVariant' const CardLinkedIn = () => { return ( <Card sx={{ border: 0, boxShadow: 0, color: 'common.white', backgroundColor: 'success.main' }}> <CardContent sx={{ p: theme => `${theme.spacing(3.25, 5, 4.5)} !important` }}> <Typography variant='h6' sx={{ display: 'flex', mb: 2.75, alignItems: 'center', color: 'common.white' }}> <Linkedin sx={{ mr: 2.5 }} /> LinkedIn Card </Typography> <Typography variant='body2' sx={{ mb: 3, color: 'common.white' }}> With the Internet spreading like wildfire and reaching every part of our daily life, more and more traffic is directed. </Typography> <Box sx={{ display: 'flex', flexWrap: 'wrap', alignItems: 'center', justifyContent: 'space-between' }}> <Box sx={{ mr: 2, display: 'flex', alignItems: 'center' }}> <Avatar alt='Anne Burke' src='/images/avatars/8.png' sx={{ width: 34, height: 34, mr: 2.75 }} /> <Typography variant='body2' sx={{ color: 'common.white' }}> Anne Burke </Typography> </Box> <Box sx={{ display: 'flex', alignItems: 'center' }}> <Box sx={{ display: 'flex', alignItems: 'center', mr: 3.5 }}> <Heart sx={{ mr: 1.25 }} /> <Typography variant='body2' sx={{ color: 'common.white' }}> 1.1k </Typography> </Box> <Box sx={{ display: 'flex', alignItems: 'center' }}> <ShareVariant sx={{ mr: 1.25 }} /> <Typography variant='body2' sx={{ color: 'common.white' }}> 67 </Typography> </Box> </Box> </Box> </CardContent> </Card> ) } export default CardLinkedIn