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
navItems={[
{
name: "Home",
id: "/",
},
name: "Home", id: "/"},
{
name: "Shop",
id: "/shop",
},
name: "Shop", id: "/shop"},
{
name: "Our Story",
id: "/about",
},
name: "Our Story", id: "/about"},
{
name: "Cart",
id: "/cart",
},
name: "Cart", id: "/cart"},
{
name: "Help",
id: "/contact",
},
name: "Help", id: "/contact"},
]}
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"
@@ -56,18 +46,13 @@ export default function LandingPage() {
<ContactText
useInvertedBackground={false}
background={{
variant: "radial-gradient",
}}
variant: "radial-gradient"}}
text="YOUR CART. YOUR STYLE. READY TO CHECKOUT?"
buttons={[
{
text: "Proceed to Payment",
href: "#payment",
},
text: "Proceed to Payment", href: "#payment"},
{
text: "Continue Shopping",
href: "/shop",
},
text: "Continue Shopping", href: "/shop"},
]}
/>
</div>
@@ -82,37 +67,13 @@ export default function LandingPage() {
description="Don't miss out on these trending pieces that perfectly complement your cart."
products={[
{
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",
},
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"},
{
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",
},
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"},
{
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",
},
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"},
{
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",
},
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"},
]}
/>
</div>
@@ -124,67 +85,41 @@ export default function LandingPage() {
logoText="pa3ror.eg"
columns={[
{
title: "Shop",
items: [
title: "Shop", items: [
{
label: "New Arrivals",
href: "/shop#new-arrivals",
},
label: "New Arrivals", href: "/shop#new-arrivals"},
{
label: "Collections",
href: "/shop#collections",
},
label: "Collections", href: "/shop#collections"},
{
label: "Sale",
href: "/shop#sale",
},
label: "Sale", href: "/shop#sale"},
],
},
{
title: "About Us",
items: [
title: "About Us", items: [
{
label: "Our Story",
href: "/about",
},
label: "Our Story", href: "/about"},
{
label: "Local Craft",
href: "/about#local-craft",
},
label: "Local Craft", href: "/about#local-craft"},
{
label: "Join The Movement",
href: "/about#community",
},
label: "Join The Movement", href: "/about#community"},
],
},
{
title: "Help",
items: [
title: "Help", items: [
{
label: "FAQs",
href: "/contact#faqs",
},
label: "FAQs", href: "/contact#faqs"},
{
label: "Shipping & Returns",
href: "/contact#shipping-returns",
},
label: "Shipping & Returns", href: "/contact#shipping-returns"},
{
label: "Contact Support",
href: "/contact",
},
label: "Contact Support", href: "/contact"},
],
},
{
title: "Legal",
items: [
title: "Legal", items: [
{
label: "Privacy Policy",
href: "#",
},
label: "Privacy Policy", href: "#"},
{
label: "Terms of Service",
href: "#",
},
label: "Terms of Service", href: "#"},
],
},
]}
@@ -196,4 +131,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}