comissions-app-ui/views/cards/CardInfluencer.tsx
2024-02-18 01:44:48 -05:00

32 lines
1.2 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// ** 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 youre in the market for new desktops, notebooks, or PDAs, there are a myriad of choices. Heres 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