materio-mui-react-nextjs-admin-template-free
Version:
Most Powerful & Comprehensive Free MUI React NextJS Admin Dashboard Template built for developers! 🚀
32 lines (29 loc) • 1.18 kB
JavaScript
// ** MUI Imports
import Card from '@mui/material/Card'
import Button from '@mui/material/Button'
import Typography from '@mui/material/Typography'
import CardHeader from '@mui/material/CardHeader'
import CardContent from '@mui/material/CardContent'
import CardActions from '@mui/material/CardActions'
const CardInfluencer = () => {
return (
<Card>
<CardHeader title='Influencing The Influencer' />
<CardContent>
<Typography variant='body2' sx={{ marginBottom: 3.25 }}>
Computers have become ubiquitous in almost every facet of our lives. At work, desk jockeys spend hours in
front of their desktops, while delivery people scan bar codes with handhelds and workers in the field stay in
touch.
</Typography>
<Typography variant='body2'>
If you’re in the market for new desktops, notebooks, or PDAs, there are a myriad of choices. Here’s a rundown
of some of the best systems available.
</Typography>
</CardContent>
<CardActions className='card-action-dense'>
<Button>Read More</Button>
</CardActions>
</Card>
)
}
export default CardInfluencer