diff --git a/src/app/cart/page.tsx b/src/app/cart/page.tsx
index bf343d9..762de6d 100644
--- a/src/app/cart/page.tsx
+++ b/src/app/cart/page.tsx
@@ -27,69 +27,44 @@ export default function LandingPage() {
{}}
items={[
{
- id: "1",
- name: "ProForm Carbon TL Treadmill",
- price: "$799.00",
- quantity: 1,
- imageSrc: "http://img.b2bpic.net/free-photo/fitness-girl-running-treadmill_158595-1910.jpg?_wi=2",
- imageAlt: "modern treadmill gym equipment",
- },
+ id: "1", name: "ProForm Carbon TL Treadmill", price: "$799.00", quantity: 1,
+ imageSrc: "http://img.b2bpic.net/free-photo/fitness-girl-running-treadmill_158595-1910.jpg", imageAlt: "modern treadmill gym equipment"},
{
- id: "2",
- name: "Adjustable Dumbbell Set (5-50 lbs)",
- variants: [
- "5-50 lbs",
- ],
- price: "$349.99",
- quantity: 1,
- imageSrc: "http://img.b2bpic.net/free-photo/woman-fitness-trainer-with-dumbbells-gym_1303-13910.jpg?_wi=2",
- imageAlt: "dumbbell set gym weights",
- },
+ id: "2", name: "Adjustable Dumbbell Set (5-50 lbs)", variants: [
+ "5-50 lbs"],
+ price: "$349.99", quantity: 1,
+ imageSrc: "http://img.b2bpic.net/free-photo/woman-fitness-trainer-with-dumbbells-gym_1303-13910.jpg", imageAlt: "dumbbell set gym weights"},
]}
total="$1148.99"
buttons={[
{
- text: "Continue Shopping",
- href: "/products",
- },
+ text: "Continue Shopping", href: "/products"},
{
- text: "Proceed to Checkout",
- href: "/checkout",
- },
+ text: "Proceed to Checkout", href: "/checkout"},
]}
title="Your Shopping Cart"
emptyMessage="Your cart is currently empty. Explore our premium equipment and start building your ultimate gym!"
@@ -98,31 +73,17 @@ export default function LandingPage() {