From 2c1a2a4c65db853f6b65bea2ed0cc778da2c97c0 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 22 Feb 2026 12:18:55 +0000 Subject: [PATCH 1/8] Update src/app/about/page.tsx --- src/app/about/page.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 7cb3bec..4eaca9f 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -11,6 +11,7 @@ export default function AboutPage() { { name: "Home", id: "/" }, { name: "Products", id: "/products" }, { name: "About", id: "/about" }, + { name: "Blog", id: "/blog" }, { name: "Contact", id: "/contact" } ]; -- 2.49.1 From 440a8069edbec430d1c5188074aca033fd2d7de3 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 22 Feb 2026 12:18:55 +0000 Subject: [PATCH 2/8] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 9895fc3..c787ba8 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -10,6 +10,7 @@ export default function BlogPage() { { name: "Home", id: "/" }, { name: "Products", id: "/products" }, { name: "About", id: "/about" }, + { name: "Blog", id: "/blog" }, { name: "Contact", id: "/contact" } ]; -- 2.49.1 From c64455eee5cfd7319ed054c765cc4517a976d5ce Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 22 Feb 2026 12:18:56 +0000 Subject: [PATCH 3/8] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 776cd22..79e6cea 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -11,6 +11,7 @@ export default function ContactPage() { { name: "Home", id: "/" }, { name: "Products", id: "/products" }, { name: "About", id: "/about" }, + { name: "Blog", id: "/blog" }, { name: "Contact", id: "/contact" } ]; -- 2.49.1 From b83354a7b989fbfb0eb3849083e7b2a8d8acb279 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 22 Feb 2026 12:18:56 +0000 Subject: [PATCH 4/8] Update src/app/page.tsx --- src/app/page.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/page.tsx b/src/app/page.tsx index 36389f9..0520592 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -15,6 +15,7 @@ export default function HomePage() { { name: "Home", id: "/" }, { name: "Products", id: "/products" }, { name: "About", id: "/about" }, + { name: "Blog", id: "/blog" }, { name: "Contact", id: "/contact" } ]; -- 2.49.1 From 46ce80ad1d479ae440174a305ee3c98c2d893d91 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 22 Feb 2026 12:18:57 +0000 Subject: [PATCH 5/8] Update src/app/products/page.tsx --- src/app/products/page.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/products/page.tsx b/src/app/products/page.tsx index 0f80aa5..0379014 100644 --- a/src/app/products/page.tsx +++ b/src/app/products/page.tsx @@ -10,6 +10,7 @@ export default function ProductsPage() { { name: "Home", id: "/" }, { name: "Products", id: "/products" }, { name: "About", id: "/about" }, + { name: "Blog", id: "/blog" }, { name: "Contact", id: "/contact" } ]; -- 2.49.1 From 22c0fa565eb51c32e5e1b144eb6fbffd416d0ec9 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 22 Feb 2026 12:18:57 +0000 Subject: [PATCH 6/8] Update src/app/shop/[id]/page.tsx --- src/app/shop/[id]/page.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index 5406ef6..e533e46 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -9,6 +9,7 @@ export default function ProductPage({ params }: { params: { id: string } }) { { name: "Home", id: "/" }, { name: "Products", id: "/products" }, { name: "About", id: "/about" }, + { name: "Blog", id: "/blog" }, { name: "Contact", id: "/contact" } ]; @@ -73,4 +74,4 @@ export default function ProductPage({ params }: { params: { id: string } }) { ); -} +} \ No newline at end of file -- 2.49.1 From 7b76914b3a58b014b1badfb6106162977283fa1a Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 22 Feb 2026 12:18:57 +0000 Subject: [PATCH 7/8] Update src/app/shop/page.tsx --- src/app/shop/page.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index 5ab5987..ce6a37a 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -10,6 +10,7 @@ export default function ShopPage() { { name: "Home", id: "/" }, { name: "Products", id: "/products" }, { name: "About", id: "/about" }, + { name: "Blog", id: "/blog" }, { name: "Contact", id: "/contact" } ]; @@ -85,4 +86,4 @@ export default function ShopPage() { ); -} +} \ No newline at end of file -- 2.49.1 From 4ca455a3df290b189c407069bd97122e4bd2e4f1 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 22 Feb 2026 12:18:58 +0000 Subject: [PATCH 8/8] Update src/app/styles/variables.css --- src/app/styles/variables.css | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index 8ffff17..993285e 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -2,23 +2,23 @@ /* Base units */ /* --vw is set by ThemeProvider */ - /* --background: #f7f6f7;; - --card: #ffffff;; - --foreground: #032419;; - --primary-cta: #2bb889;; - --secondary-cta: #ffffff;; - --accent: #09b97e;; - --background-accent: #a8e8c3;; */ + /* --background: #0a0a0a;; + --card: #1a1a1a;; + --foreground: #ffffffe6;; + --primary-cta: #e6e6e6;; + --secondary-cta: #1a1a1a;; + --accent: #737373;; + --background-accent: #737373;; */ - --background: #f7f6f7;; - --card: #ffffff;; - --foreground: #032419;; - --primary-cta: #2bb889;; - --primary-cta-text: #f7f6f7;; - --secondary-cta: #ffffff;; - --secondary-cta-text: #032419;; - --accent: #09b97e;; - --background-accent: #a8e8c3;; + --background: #0a0a0a;; + --card: #1a1a1a;; + --foreground: #ffffffe6;; + --primary-cta: #e6e6e6;; + --primary-cta-text: #0a0a0a;; + --secondary-cta: #1a1a1a;; + --secondary-cta-text: #ffffffe6;; + --accent: #737373;; + --background-accent: #737373;; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1