From 04ef71a4633c5b03a1ae46c44f506bcce7c0e782 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Feb 2026 03:57:00 +0000 Subject: [PATCH 1/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 53838b3..4054a1b 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: "Why Us", id: "about" }, { name: "Pricing", id: "pricing" }, { name: "Reviews", id: "testimonials" }, - { name: "Contact", id: "contact" }, - { name: "Shop", id: "/shop" } + { name: "Contact", id: "contact" } ]} button={{ text: "Cart", onClick: () => setCartOpen(true) }} /> @@ -135,8 +134,7 @@ export default function ProductPage({ params }: ProductPageProps) { { name: "Why Us", id: "about" }, { name: "Pricing", id: "pricing" }, { name: "Reviews", id: "testimonials" }, - { name: "Contact", id: "contact" }, - { name: "Shop", id: "/shop" } + { name: "Contact", id: "contact" } ]} button={{ text: "Cart", onClick: () => setCartOpen(true) }} /> @@ -187,8 +185,7 @@ export default function ProductPage({ params }: ProductPageProps) { { name: "Why Us", id: "about" }, { name: "Pricing", id: "pricing" }, { name: "Reviews", id: "testimonials" }, - { name: "Contact", id: "contact" }, - { name: "Shop", id: "/shop" } + { name: "Contact", id: "contact" } ]} button={{ text: "Cart", onClick: () => setCartOpen(true) }} /> -- 2.49.1 From 44fe1b00fdd3ab11cb2e6e3861ba6fe0c789252e Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Feb 2026 03:57:01 +0000 Subject: [PATCH 2/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 7851b03..a036b41 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -43,8 +43,7 @@ export default function ShopPage() { { name: "Why Us", id: "about" }, { name: "Pricing", id: "pricing" }, { name: "Reviews", id: "testimonials" }, - { name: "Contact", id: "contact" }, - { name: "Shop", id: "/shop" } + { name: "Contact", id: "contact" } ]} button={{ text: "Cart", onClick: () => setCartOpen(true) }} /> @@ -87,8 +86,7 @@ export default function ShopPage() { { name: "Why Us", id: "about" }, { name: "Pricing", id: "pricing" }, { name: "Reviews", id: "testimonials" }, - { name: "Contact", id: "contact" }, - { name: "Shop", id: "/shop" } + { name: "Contact", id: "contact" } ]} button={{ text: "Cart", onClick: () => setCartOpen(true) }} /> -- 2.49.1 From 2730211a30456d50484bdd2d61ee34c76be9c8c9 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Feb 2026 03:57:01 +0000 Subject: [PATCH 3/3] Update src/app/styles/variables.css --- src/app/styles/variables.css | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index 4c12381..bdea9e7 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -2,21 +2,21 @@ /* Base units */ /* --vw is set by ThemeProvider */ - /* --background: #f5f5f5;; - --card: #ffffff;; - --foreground: #1c1c1c;; - --primary-cta: #6139e6;; + /* --background: #fafffb;; + --card: #f7fffa;; + --foreground: #001a0a;; + --primary-cta: #0a7039;; --secondary-cta: #ffffff;; - --accent: #6139e6;; - --background-accent: #b3a8e8;; */ + --accent: #a8d9be;; + --background-accent: #6bbf8e;; */ - --background: #f5f5f5;; - --card: #ffffff;; - --foreground: #1c1c1c;; - --primary-cta: #6139e6;; + --background: #fafffb;; + --card: #f7fffa;; + --foreground: #001a0a;; + --primary-cta: #0a7039;; --secondary-cta: #ffffff;; - --accent: #6139e6;; - --background-accent: #b3a8e8;; + --accent: #a8d9be;; + --background-accent: #6bbf8e;; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1