| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- import { Breadcrumbs, Divider, Grid, Typography } from '@mui/material';
- import { Box } from '@mui/system';
- import DataCard from '../cards/data-card/DataCard';
- import ShippingDetailsForm from '../forms/shipping-details/ShippingDetailsForm';
-
- const CheckoutContent = () => {
- return (
- <Grid container spacing={2} sx={{ py: 10, height: '100%', width: '100%' }}>
- <Grid item xs={12}>
- <Typography
- variant="h3"
- sx={{ pl: 12, mt: 12, height: '100%', color: 'primary.main' }}
- >
- Checkout
- </Typography>
- </Grid>
- <Grid item xs={12}>
- <Divider sx={{ backgroundColor: 'primary.main', mx: 12 }} />
- </Grid>
- <Grid item xs={12} sx={{ mt: 4 }}>
- <Breadcrumbs
- aria-label="breadcrumb"
- separator="›"
- sx={{ pl: 12, fontSize: 20 }}
- >
- <Typography>Cart</Typography>
- <Typography color="red">Checkout</Typography>
- </Breadcrumbs>
- </Grid>
- <Grid item xs={12} sx={{ mt: 1 }}>
- <Typography sx={{ pl: 12, fontSize: 20 }}>
- The following fields will be used as the shipping details for your
- order
- </Typography>
- </Grid>
- <Grid item xs={8}>
- <ShippingDetailsForm backBtn={true}></ShippingDetailsForm>
- </Grid>
- <Grid item xs={4}>
- <Box sx={{ width: '80%', mt: 2 }}>
- <DataCard></DataCard>
- <DataCard></DataCard>
- <DataCard></DataCard>
- </Box>
- </Grid>
- </Grid>
- );
- };
-
- export default CheckoutContent;
|