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.
29 lines (26 loc) • 993 B
JavaScript
// ** MUI Imports
import Card from '@mui/material/Card'
import Button from '@mui/material/Button'
import CardMedia from '@mui/material/CardMedia'
import Typography from '@mui/material/Typography'
import CardContent from '@mui/material/CardContent'
const CardAppleWatch = () => {
return (
<Card>
<CardMedia sx={{ height: '9.375rem' }} image='/images/cards/watch-on-hand.jpg' />
<CardContent sx={{ p: theme => `${theme.spacing(3, 5.25, 4)} !important` }}>
<Typography variant='h6' sx={{ mb: 2 }}>
Apple Watch
</Typography>
<Typography sx={{ mb: 2 }}>$249.40</Typography>
<Typography variant='body2'>
3.1GHz 6-core 10th-generation Intel Core i5 processor, Turbo Boost up to 4.5GHz
</Typography>
</CardContent>
<Button variant='contained' sx={{ py: 2.5, width: '100%', borderTopLeftRadius: 0, borderTopRightRadius: 0 }}>
Add To Cart
</Button>
</Card>
)
}
export default CardAppleWatch