Update src/app/cart/page.tsx

This commit is contained in:
2026-05-28 12:00:08 +00:00
parent 2ecad7b4a1
commit e32dac4a60

View File

@@ -26,25 +26,15 @@ export default function LandingPage() {
<NavbarLayoutFloatingOverlay <NavbarLayoutFloatingOverlay
navItems={[ navItems={[
{ {
name: "Home", name: "Home", id: "/"},
id: "/",
},
{ {
name: "Shop", name: "Shop", id: "/shop"},
id: "/shop",
},
{ {
name: "Our Story", name: "Our Story", id: "/about"},
id: "/about",
},
{ {
name: "Cart", name: "Cart", id: "/cart"},
id: "/cart",
},
{ {
name: "Help", name: "Help", id: "/contact"},
id: "/contact",
},
]} ]}
logoSrc="http://img.b2bpic.net/free-photo/man-ancient-egyptian-costume-relaxing-making-meditation-gesture-with-fingers-white_141793-120614.jpg" logoSrc="http://img.b2bpic.net/free-photo/man-ancient-egyptian-costume-relaxing-making-meditation-gesture-with-fingers-white_141793-120614.jpg"
logoAlt="pa3ror.eg brand logo" logoAlt="pa3ror.eg brand logo"
@@ -56,18 +46,13 @@ export default function LandingPage() {
<ContactText <ContactText
useInvertedBackground={false} useInvertedBackground={false}
background={{ background={{
variant: "radial-gradient", variant: "radial-gradient"}}
}}
text="YOUR CART. YOUR STYLE. READY TO CHECKOUT?" text="YOUR CART. YOUR STYLE. READY TO CHECKOUT?"
buttons={[ buttons={[
{ {
text: "Proceed to Payment", text: "Proceed to Payment", href: "#payment"},
href: "#payment",
},
{ {
text: "Continue Shopping", text: "Continue Shopping", href: "/shop"},
href: "/shop",
},
]} ]}
/> />
</div> </div>
@@ -82,37 +67,13 @@ export default function LandingPage() {
description="Don't miss out on these trending pieces that perfectly complement your cart." description="Don't miss out on these trending pieces that perfectly complement your cart."
products={[ products={[
{ {
id: "cart-p-1", id: "cart-p-1", name: "Desert Cap", price: "EGP 200", variant: "Khaki | Minimal", imageSrc: "http://img.b2bpic.net/free-photo/creative-trucker-hat-still-life_23-2149504581.jpg", imageAlt: "pa3ror.eg khaki cap"},
name: "Desert Cap",
price: "EGP 200",
variant: "Khaki | Minimal",
imageSrc: "http://img.b2bpic.net/free-photo/creative-trucker-hat-still-life_23-2149504581.jpg",
imageAlt: "pa3ror.eg khaki cap",
},
{ {
id: "cart-p-2", id: "cart-p-2", name: "Graphic Socks", price: "EGP 100", variant: "Black | Ankh Design", imageSrc: "http://img.b2bpic.net/free-photo/young-fashion-beautiful-woman-sunglasses-sitting-chair-isolated_231208-5792.jpg", imageAlt: "pa3ror.eg black graphic socks"},
name: "Graphic Socks",
price: "EGP 100",
variant: "Black | Ankh Design",
imageSrc: "http://img.b2bpic.net/free-photo/young-fashion-beautiful-woman-sunglasses-sitting-chair-isolated_231208-5792.jpg",
imageAlt: "pa3ror.eg black graphic socks",
},
{ {
id: "cart-p-3", id: "cart-p-3", name: "Canvas Tote", price: "EGP 300", variant: "Natural | Logo Print", imageSrc: "http://img.b2bpic.net/free-photo/hand-painted-canvas-bag-close-up_23-2148372112.jpg", imageAlt: "pa3ror.eg logo canvas tote"},
name: "Canvas Tote",
price: "EGP 300",
variant: "Natural | Logo Print",
imageSrc: "http://img.b2bpic.net/free-photo/hand-painted-canvas-bag-close-up_23-2148372112.jpg",
imageAlt: "pa3ror.eg logo canvas tote",
},
{ {
id: "cart-p-4", id: "cart-p-4", name: "Statement Ring", price: "EGP 150", variant: "Silver | Scarab Detail", imageSrc: "http://img.b2bpic.net/free-photo/closeup-shot-oval-shaped-amazonite-ring-white-surface_181624-17055.jpg", imageAlt: "pa3ror.eg scarab ring"},
name: "Statement Ring",
price: "EGP 150",
variant: "Silver | Scarab Detail",
imageSrc: "http://img.b2bpic.net/free-photo/closeup-shot-oval-shaped-amazonite-ring-white-surface_181624-17055.jpg",
imageAlt: "pa3ror.eg scarab ring",
},
]} ]}
/> />
</div> </div>
@@ -124,67 +85,41 @@ export default function LandingPage() {
logoText="pa3ror.eg" logoText="pa3ror.eg"
columns={[ columns={[
{ {
title: "Shop", title: "Shop", items: [
items: [
{ {
label: "New Arrivals", label: "New Arrivals", href: "/shop#new-arrivals"},
href: "/shop#new-arrivals",
},
{ {
label: "Collections", label: "Collections", href: "/shop#collections"},
href: "/shop#collections",
},
{ {
label: "Sale", label: "Sale", href: "/shop#sale"},
href: "/shop#sale",
},
], ],
}, },
{ {
title: "About Us", title: "About Us", items: [
items: [
{ {
label: "Our Story", label: "Our Story", href: "/about"},
href: "/about",
},
{ {
label: "Local Craft", label: "Local Craft", href: "/about#local-craft"},
href: "/about#local-craft",
},
{ {
label: "Join The Movement", label: "Join The Movement", href: "/about#community"},
href: "/about#community",
},
], ],
}, },
{ {
title: "Help", title: "Help", items: [
items: [
{ {
label: "FAQs", label: "FAQs", href: "/contact#faqs"},
href: "/contact#faqs",
},
{ {
label: "Shipping & Returns", label: "Shipping & Returns", href: "/contact#shipping-returns"},
href: "/contact#shipping-returns",
},
{ {
label: "Contact Support", label: "Contact Support", href: "/contact"},
href: "/contact",
},
], ],
}, },
{ {
title: "Legal", title: "Legal", items: [
items: [
{ {
label: "Privacy Policy", label: "Privacy Policy", href: "#"},
href: "#",
},
{ {
label: "Terms of Service", label: "Terms of Service", href: "#"},
href: "#",
},
], ],
}, },
]} ]}