import React, { useState } from 'react'; import { Link } from 'react-router-dom'; import Sidebar from '../../partials/Sidebar'; import Header from '../../partials/Header'; import ProductImage01 from '../../images/related-product-01.jpg'; import ProductImage02 from '../../images/related-product-02.jpg'; import ProductImage03 from '../../images/related-product-03.jpg'; function Cart3() { const [sidebarOpen, setSidebarOpen] = useState(false); return (
{/* Sidebar */} {/* Content area */}
{/* Site header */}
{/* Content */}
{/* Cart items */}
Review -> Payment -> Confirm
{/* Title */}

Thank you for your order ✨

You will soon receive a confirmation email with details of your order and a link to download the files.

{/* Billing Information */}
Billing Information
{/* 1st row */}
{/* 2nd row */}
{/* 3rd row */}
{/* 4th row */}
{/* Divider */}
{/* Billing footer */}
Enjoy a 20% OFF discount on your next order 🎉
{/* Sidebar */}

Order Summary

{/* Order Details */}
Order Details
{/* Cart items */} {/* Fees, discount and total */}
  • Subtotal
    $205
  • Taxes
    $48
  • Discount XMAS22
    -$25
  • Total
    $205
{/* Payment Details */}
Payment Details
{/* CC details */}
{/* Mastercard icon */}
Ending with 2478
{/* Expiry */}
Expires 12/23
View Your Order
Should you ever change your mind, we offer a 14-day, no-questions-asked refund policy.
); } export default Cart3;