mirror of
https://github.com/D4M13N-D3V/comissions-app-ui.git
synced 2025-03-14 08:15:08 +00:00
32 lines
1.2 KiB
TypeScript
32 lines
1.2 KiB
TypeScript
// ** 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
|