| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- import { Box, Paper, Typography } from '@mui/material';
- import Image from 'next/image';
- import PropType from 'prop-types';
-
- const DataCard = ({ data, quantity }) => {
- return (
- <Paper
- sx={{
- p: 3,
- width: { lg: '100%', xs: '35%' },
- mb: 2,
- ml: { lg: 0, xs: 6 },
- backgroundColor: '#f2f2f2',
- display: 'flex',
- flex: { xs: [0, 0, '32%'], lg: 'none' },
- }}
- elevation={3}
- >
- <Box
- sx={{
- width: '30%',
- borderRadius: 4,
- overflow: 'hidden',
- display: { xs: 'none', lg: 'block' },
- }}
- >
- <Image
- src="/images/coffee-mug.svg"
- alt="profile"
- width={200}
- height={250}
- />
- </Box>
- <Box
- sx={{
- ml: 3,
- display: 'flex',
- flexDirection: 'column',
- width: { lg: '60%', sx: '100%' },
- }}
- >
- <Typography
- sx={{
- width: '100%',
- textAlign: 'center',
- height: 25,
- fontWeight: 600,
- fontSize: { md: 20, xs: 16 },
- }}
- >
- {data.name} - x{quantity}
- </Typography>
- <Typography
- sx={{
- mt: { sm: 3, xs: 6 },
- fontSize: 14,
- }}
- >
- {data.description}
- </Typography>
- <Typography
- sx={{
- mt: { lg: 3, xs: 1 },
- textAlign: 'right',
- fontSize: 14,
- }}
- >
- ${data.price} (per unit)
- </Typography>
- </Box>
- </Paper>
- );
- };
-
- DataCard.propTypes = {
- product: PropType.shape({
- category: PropType.string,
- name: PropType.string,
- image: PropType.string,
- description: PropType.string,
- place: PropType.string,
- people: PropType.string,
- process: PropType.string,
- pairing: PropType.string,
- available: PropType.Boolean,
- isFeatured: PropType.Boolean,
- price: PropType.number,
- customID: PropType.string,
- }),
- quantity: PropType.number,
- };
-
- export default DataCard;
|