// ** Next Import import Link from 'next/link' // ** MUI Imports import Box from '@mui/material/Box' import Grid from '@mui/material/Grid' import Alert from '@mui/material/Alert' import Button from '@mui/material/Button' import Rating from '@mui/material/Rating' import Divider from '@mui/material/Divider' import ListItem from '@mui/material/ListItem' import TextField from '@mui/material/TextField' import IconButton from '@mui/material/IconButton' import AlertTitle from '@mui/material/AlertTitle' import Typography from '@mui/material/Typography' import CardContent from '@mui/material/CardContent' import { Theme, styled } from '@mui/material/styles' import List, { ListProps } from '@mui/material/List' import ListItemText from '@mui/material/ListItemText' import useMediaQuery from '@mui/material/useMediaQuery' import ListItemAvatar from '@mui/material/ListItemAvatar' // ** Custom Components Imports import CustomChip from 'src/@core/components/mui/chip' // ** Icon Imports import Icon from 'src/@core/components/icon' import Image from 'next/image' const StyledList = styled(List)(({ theme }) => ({ padding: 0, '& .MuiListItem-root': { padding: theme.spacing(5), border: `1px solid ${theme.palette.divider}`, '&:first-of-type': { borderTopLeftRadius: 6, borderTopRightRadius: 6 }, '&:last-of-type': { borderBottomLeftRadius: 6, borderBottomRightRadius: 6 }, '&:not(:last-of-type)': { borderBottom: 0 }, '& .MuiListItemText-root': { marginTop: 0, marginBottom: theme.spacing(4), '& .MuiTypography-root': { fontWeight: 500 } }, '& .remove-item': { top: '0.5rem', right: '0.625rem', position: 'absolute', color: theme.palette.text.disabled }, [theme.breakpoints.down('sm')]: { flexDirection: 'column' } } })) const StepCart = ({ handleNext }: { handleNext: () => void }) => { const breakpointMD = useMediaQuery((theme: Theme) => theme.breakpoints.between('sm', 'lg')) return ( } sx={{ mb: 4 }}> Available Offers
- 10% Instant Discount on Bank of America Corp Bank Debit and Credit cards - 25% Cashback Voucher of up to $60 on first ever PayPal transaction. TCA
My Shopping Bag (2 Items) Google Home Sold By: e.preventDefault()} sx={{ mr: 4, color: 'primary.main', textDecoration: 'none' }} > Google $299 /$359 iphone 11 Sold By: e.preventDefault()} sx={{ mr: 4, color: 'primary.main', textDecoration: 'none' }} > Apple $899 /$999 `1px solid ${theme.palette.divider}` }} > e.preventDefault()} sx={{ color: 'primary.main', textDecoration: 'none' }} > Add more products from wishlist
`1px solid ${theme.palette.divider}` }}> Offer Buying gift for a loved one? Gift wrap and personalized message on card, Only for $2. e.preventDefault()} sx={{ color: 'primary.main', fontWeight: 600, textDecoration: 'none' }} > Add a gift wrap Price Details Bag Total $1198.00 Coupon Discount e.preventDefault()} sx={{ display: 'block', fontWeight: 600, color: 'primary.main', textDecoration: 'none' }} > Apply Coupon Order Total $1198.00 Delivery Charges $5.00 `${theme.spacing(3.5)} !important` }}> Total $1198.00
) } export default StepCart