This commit is contained in:
2025-10-27 17:39:18 -04:00
commit 31f723bea4
1579 changed files with 642409 additions and 0 deletions

View File

@@ -0,0 +1,50 @@
{
"products": [
{
"name": "Aluminum Chandelier",
"category": "Chandeliers",
"options": [
{"title": "Color", "value": "Gray"},
{"title": "Material", "value": "Aluminum"}
],
"image": "images/products/product1-1",
"price": "$249.00",
"quantity": 1,
"total": "$249.00"
},
{
"name": "Wooden Closet",
"category": "Cabinets",
"options": [
{"title": "Color", "value": "Dark Brown"}
],
"image": "images/products/product3-1",
"price": "$439.00",
"quantity": 3,
"total": "$1,317.00"
},
{
"name": "Monero Chair",
"category": "Wooden Chairs",
"options": [
{"title": "Color", "value": "Brown"}
],
"image": "images/products/product4-1",
"price": "$17.00",
"quantity": 2,
"total": "$34.00"
}
],
"totals": [
{"title": "Subtotal", "value": "$2,459.00"},
{"title": "Shipping", "value": "Free Shipping"},
{"title": "Tax", "value": "$0.00"},
{"title": "Total", "value": "$2,459.00"}
],
"checkout_totals": [
{"title": "Subtotal", "value": "$2,459.00"},
{"title": "Store Credit", "value": "$-20.00"},
{"title": "Shipping", "value": "$25.00"},
{"title": "Total", "value": "$2,464.00"}
]
}