You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. import { Breadcrumbs, Button, Divider, Grid, Typography } from '@mui/material';
  2. import { Box } from '@mui/system';
  3. const ReviewContent = () => {
  4. return (
  5. <Grid container spacing={2} sx={{ py: 10, height: '100%', width: '100%' }}>
  6. <Grid item xs={12}>
  7. <Typography
  8. variant="h3"
  9. sx={{ pl: 12, mt: 12, height: '100%', color: 'primary.main' }}
  10. >
  11. Shipping
  12. </Typography>
  13. </Grid>
  14. <Grid item xs={12}>
  15. <Divider sx={{ backgroundColor: 'primary.main', mx: 12 }} />
  16. </Grid>
  17. <Grid item xs={12} sx={{ mt: 4 }}>
  18. <Breadcrumbs
  19. aria-label="breadcrumb"
  20. separator="›"
  21. sx={{ pl: 12, fontSize: 20 }}
  22. >
  23. <Typography>Cart</Typography>
  24. <Typography>Checkout</Typography>
  25. <Typography>Shipping</Typography>
  26. <Typography>Payment</Typography>
  27. <Typography color="red">Review</Typography>
  28. </Breadcrumbs>
  29. </Grid>
  30. <Grid item xs={12} sx={{ mt: 1 }}>
  31. <Typography
  32. sx={{
  33. width: '100%',
  34. textAlign: 'center',
  35. color: 'primary.main',
  36. fontWeight: 600,
  37. fontSize: 22,
  38. }}
  39. >
  40. ORDER COMPLETE SUCCESSFULLY
  41. </Typography>
  42. </Grid>
  43. <Grid item xs={12} sx={{ mt: 1 }}>
  44. <Typography
  45. sx={{
  46. width: '100%',
  47. fontWeight: 600,
  48. mt: 2,
  49. textAlign: 'center',
  50. }}
  51. >
  52. Thank you for placing your order with us. We wll get to work on
  53. sending your order as soon as possible
  54. </Typography>
  55. </Grid>
  56. <Grid item xs={12} sx={{ mt: 1 }}>
  57. <Typography
  58. sx={{
  59. width: '100%',
  60. textAlign: 'center',
  61. mt: 2,
  62. fontSize: 44,
  63. fontWeight: 600,
  64. }}
  65. >
  66. Order Summary
  67. </Typography>
  68. </Grid>
  69. <Grid item xs={12}>
  70. <Box
  71. sx={{
  72. backgroundColor: '#f2f2f2',
  73. mt: 4,
  74. ml: 12,
  75. width: '85%',
  76. borderRadius: 2,
  77. p: 1,
  78. }}
  79. >
  80. <Typography sx={{ fontSize: 18, fontWeight: 600 }}>
  81. Order placed on: 05/09/2022
  82. </Typography>
  83. </Box>
  84. </Grid>
  85. <Grid item xs={12}>
  86. <Box
  87. sx={{
  88. backgroundColor: '#f2f2f2',
  89. ml: 12,
  90. width: '85%',
  91. borderRadius: 2,
  92. p: 1,
  93. }}
  94. >
  95. <Typography sx={{ fontSize: 18, fontWeight: 600 }}>
  96. Email: johndoe@test
  97. </Typography>
  98. </Box>
  99. </Grid>
  100. <Grid item xs={12}>
  101. <Box
  102. sx={{
  103. backgroundColor: '#f2f2f2',
  104. ml: 12,
  105. width: '85%',
  106. borderRadius: 2,
  107. p: 1,
  108. }}
  109. >
  110. <Typography sx={{ fontSize: 18, fontWeight: 600 }}>
  111. Total: $60
  112. </Typography>
  113. </Box>
  114. </Grid>
  115. <Grid item xs={12}>
  116. <Box
  117. sx={{
  118. backgroundColor: '#f2f2f2',
  119. ml: 12,
  120. width: '85%',
  121. borderRadius: 2,
  122. p: 1,
  123. }}
  124. >
  125. <Typography sx={{ fontSize: 18, fontWeight: 600 }}>
  126. Shipping Address: 1684 Upton Avenue, Locke Mills, United Kingdom,
  127. 04255
  128. </Typography>
  129. </Box>
  130. </Grid>
  131. <Grid item xs={12} sx={{ mt: 1 }}>
  132. <Box
  133. sx={{
  134. width: '100%',
  135. display: 'flex',
  136. justifyContent: 'center',
  137. mt: 2,
  138. borderRadius: 2,
  139. p: 1,
  140. }}
  141. >
  142. <Button
  143. variant="contained"
  144. sx={{
  145. mt: 3,
  146. mb: 2,
  147. height: 50,
  148. width: 150,
  149. textTransform: 'none',
  150. backgroundColor: '#CBA213',
  151. color: 'white',
  152. mr: 2,
  153. fontSize: 16,
  154. }}
  155. >
  156. Back to Home
  157. </Button>
  158. </Box>
  159. </Grid>
  160. </Grid>
  161. );
  162. };
  163. export default ReviewContent;