'use client'; import { Button } from 'primereact/button'; import { classNames } from 'primereact/utils'; import React from 'react'; function OrderSummary() { const products = [ { name: 'Cotton Sweatshirt', size: 'Medium', color: 'White', price: '$12', quantity: '1', image: '/demo/images/ecommerce/ordersummary/order-summary-1-1.png' }, { name: 'Regular Jeans', size: 'Large', color: 'Black', price: '$24', quantity: '1', image: '/demo/images/ecommerce/ordersummary/order-summary-1-2.png' } ]; return ( <>
Thanks!
Successful Order 🚀

Your order is on the way. It‘ll be shipped today. We‘ll inform you.

Order number: 451234
Shipping Address
Celeste Slater 606-3727 Ullamcorper. Roseville NH 11523 (786) 713-8616
Payment
visa
Visa Debit Card **** **** **** 1234
  • Summary
  • Subtotal $36.00
  • Shipping $5.00
  • Tax $4.00
  • Total $41.00
Thanks for your order!
Order ID 451234
Order Date 7 Feb 2023
summary-1-2
Product Name
Order Processing
Ordered Processing Shipping Delivered
Product Name $21.00
Shipping Address
Celeste Slater 606-3727 Ullamcorper. Roseville NH 11523 (786) 713-8616
Payment
visa-2
Visa Debit Card **** **** **** 1234
); } export default OrderSummary;