From 014bae7b9d3fdca9bde4b8e334576843abadc12e Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 18 Feb 2026 23:16:57 +0000 Subject: [PATCH 1/3] Update src/app/page.tsx --- src/app/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 30b1d10..1f9cc40 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -67,7 +67,7 @@ export default function LandingPage() { text: "Schedule Consultation", href: "#contact" } ]} - background={{ variant: "rotated-rays-static" }} + background={{ variant: "sparkles-gradient" }} buttonAnimation="slide-up" ariaLabel="Proof Digital hero section" marqueeItems={[ -- 2.49.1 From c4a51a814601413226f4a9a4a226105f5ded1b25 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 18 Feb 2026 23:16:58 +0000 Subject: [PATCH 2/3] Update src/app/shop/[id]/page.tsx --- src/app/shop/[id]/page.tsx | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index 7e7d1b8..380c8f2 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -90,8 +90,7 @@ export default function ProductPage({ params }: ProductPageProps) { { name: "Portfolio", id: "portfolio" }, { name: "Testimonials", id: "testimonials" }, { name: "Pricing", id: "pricing" }, - { name: "Team", id: "team" }, - { name: "Shop", id: "/shop" } + { name: "Team", id: "team" } ]} button={{ text: "Cart", onClick: () => setCartOpen(true) }} /> @@ -159,8 +158,7 @@ export default function ProductPage({ params }: ProductPageProps) { { name: "Portfolio", id: "portfolio" }, { name: "Testimonials", id: "testimonials" }, { name: "Pricing", id: "pricing" }, - { name: "Team", id: "team" }, - { name: "Shop", id: "/shop" } + { name: "Team", id: "team" } ]} button={{ text: "Cart", onClick: () => setCartOpen(true) }} /> @@ -235,8 +233,7 @@ export default function ProductPage({ params }: ProductPageProps) { { name: "Portfolio", id: "portfolio" }, { name: "Testimonials", id: "testimonials" }, { name: "Pricing", id: "pricing" }, - { name: "Team", id: "team" }, - { name: "Shop", id: "/shop" } + { name: "Team", id: "team" } ]} button={{ text: "Cart", onClick: () => setCartOpen(true) }} /> -- 2.49.1 From 1a4eb0ef1a7c11e69ba3eb2e4c917a97c5df7c9f Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 18 Feb 2026 23:16:58 +0000 Subject: [PATCH 3/3] Update src/app/shop/page.tsx --- src/app/shop/page.tsx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index a899ca0..84a707b 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -40,8 +40,7 @@ export default function ShopPage() { { name: "Portfolio", id: "portfolio" }, { name: "Testimonials", id: "testimonials" }, { name: "Pricing", id: "pricing" }, - { name: "Team", id: "team" }, - { name: "Shop", id: "/shop" } + { name: "Team", id: "team" } ]} button={{ text: "Cart", onClick: () => console.log("cart") }} /> @@ -108,8 +107,7 @@ export default function ShopPage() { { name: "Portfolio", id: "portfolio" }, { name: "Testimonials", id: "testimonials" }, { name: "Pricing", id: "pricing" }, - { name: "Team", id: "team" }, - { name: "Shop", id: "/shop" } + { name: "Team", id: "team" } ]} button={{ text: "Cart", onClick: () => console.log("cart") }} /> -- 2.49.1