From eb82d1a0c6587b9fed78dc8e06daf259ddfc9848 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Feb 2026 14:34:37 +0000 Subject: [PATCH 1/5] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index ce7b5f2..a2db8a6 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -36,13 +36,15 @@ export default function BlogPage() { brandName="Paw Haven" navItems={[ { name: "Home", id: "/" }, - { name: "Adopt", id: "adopt" }, - { name: "About", id: "about" }, - { name: "Success", id: "testimonials" }, - { name: "Support", id: "support" }, - { name: "Contact", id: "contact" }, + { name: "Adopt", id: "/#adopt" }, + { name: "About", id: "/#about" }, + { name: "Success", id: "/#testimonials" }, + { name: "Support", id: "/#support" }, + { name: "Blog", id: "/blog" }, + { name: "Shop", id: "/shop" }, + { name: "Contact", id: "/#contact" } ]} - button={{ text: "Donate", href: "#contact" }} + button={{ text: "Donate", href: "/#contact" }} /> -- 2.49.1 From a0472ae8b267c94b224d08d16a1833648d1e2333 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Feb 2026 14:34:38 +0000 Subject: [PATCH 2/5] Update src/app/page.tsx --- src/app/page.tsx | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index b2ce2d9..a37e40c 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -29,8 +29,17 @@ export default function SitePage() { @@ -154,4 +163,4 @@ export default function SitePage() { ); -} \ No newline at end of file +} -- 2.49.1 From 757f26c3a3baa2ae5463b8ab1c34e279fe512e83 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Feb 2026 14:34:39 +0000 Subject: [PATCH 3/5] Update src/app/shop/[id]/page.tsx --- src/app/shop/[id]/page.tsx | 33 ++++++++++++++++++++++++++++++--- 1 file changed, 30 insertions(+), 3 deletions(-) diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index 7aef2e5..52ecec2 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -85,7 +85,16 @@ export default function ProductPage({ params }: ProductPageProps) { @@ -129,7 +138,16 @@ export default function ProductPage({ params }: ProductPageProps) { @@ -180,7 +198,16 @@ export default function ProductPage({ params }: ProductPageProps) { -- 2.49.1 From 095ed1c39ab601cb52c981a318838a5ed599f115 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Feb 2026 14:34:40 +0000 Subject: [PATCH 4/5] Update src/app/shop/page.tsx --- src/app/shop/page.tsx | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index b78c160..8f4f667 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -60,7 +60,16 @@ export default function ShopPage() { @@ -103,7 +112,16 @@ export default function ShopPage() { -- 2.49.1 From 9607f928d8dec85a87be26eca8eea25bfc4a73ae Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Feb 2026 14:34:40 +0000 Subject: [PATCH 5/5] Update src/app/styles/variables.css --- src/app/styles/variables.css | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index b9190f2..45dc160 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: #1c1c1c;; - --secondary-cta: #ffffff;; - --accent: #6139e6;; - --background-accent: #b3a8e8;; */ + /* --background: #0a0a0a;; + --card: #1a1a1a;; + --foreground: #fffffae6;; + --primary-cta: #fde047;; + --secondary-cta: #1a1a1a;; + --accent: #737373;; + --background-accent: #737373;; */ - --background: #f5f5f5;; - --card: #ffffff;; - --foreground: #1c1c1c;; - --primary-cta: #1c1c1c;; - --secondary-cta: #ffffff;; - --accent: #6139e6;; - --background-accent: #b3a8e8;; + --background: #0a0a0a;; + --card: #1a1a1a;; + --foreground: #fffffae6;; + --primary-cta: #fde047;; + --secondary-cta: #1a1a1a;; + --accent: #737373;; + --background-accent: #737373;; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1