// ** Next Import import Link from 'next/link' // ** MUI Imports import Box from '@mui/material/Box' import Grid from '@mui/material/Grid' import Divider from '@mui/material/Divider' import ListItem from '@mui/material/ListItem' import { styled } from '@mui/material/styles' import Typography from '@mui/material/Typography' import CardContent from '@mui/material/CardContent' import List, { ListProps } from '@mui/material/List' import ListItemText from '@mui/material/ListItemText' 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 HorizontalList = styled(List)(({ theme }) => ({ padding: 0, display: 'flex', borderRadius: 6, border: `1px solid ${theme.palette.divider}`, '& .MuiListItem-root': { padding: theme.spacing(5), '&:not(:last-of-type)': { borderRight: `1px solid ${theme.palette.divider}` } }, [theme.breakpoints.down('md')]: { display: 'block', '& .MuiListItem-root': { '&:not(:last-of-type)': { borderRight: 0, borderBottom: `1px solid ${theme.palette.divider}` } } } })) const StepConfirmation = () => { return ( Thank You! 😇 Your order{' '} e.preventDefault()} sx={{ color: 'primary.main', textDecoration: 'none' }} > #1536548131 {' '} has been placed! We sent an email to{' '} e.preventDefault()} sx={{ color: 'primary.main', textDecoration: 'none' }} > john.doe@example.com {' '} with your order confirmation and receipt. If the email hasn't arrived within two minutes, please check your spam folder to see if the email was routed there. Time placed: 25/05/2020 13:35pm Shipping John Doe 4135 Parkway Street, Los Angeles, CA 90017, USA +123456789 Billing Address John Doe 4135 Parkway Street, Los Angeles, CA 90017, USA +123456789 Shipping Method Preferred Method: Standard Delivery (Normally 3-4 business days) 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}` }}> Price Details Order Total $1198.00 Delivery Charges $5.00 `${theme.spacing(3.5)} !important` }}> Total $1198.00 ) } export default StepConfirmation