From 87aed6631b598f3e6e04ee48a2d0a3f111d192de Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Feb 2026 14:46:30 +0000 Subject: [PATCH 1/3] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 01733cb..d0c4621 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -66,16 +66,16 @@ export default function BlogPage() { columns={[ { items: [ - { label: "Features", id: "features" }, - { label: "Pricing", id: "pricing" }, - { label: "Testimonials", id: "testimonials" } + { label: "Features", href: "#features" }, + { label: "Pricing", href: "#pricing" }, + { label: "Testimonials", href: "#testimonials" } ] }, { items: [ - { label: "About Us", id: "about" }, - { label: "Contact", id: "contact" }, - { label: "FAQ", id: "faq" } + { label: "About Us", href: "#about" }, + { label: "Contact", href: "#contact" }, + { label: "FAQ", href: "#faq" } ] }, { -- 2.49.1 From 3543c4b2ec7e82978ef652085d01c6feed68b9dc Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Feb 2026 14:46:31 +0000 Subject: [PATCH 2/3] Update src/app/shop/[id]/page.tsx --- src/app/shop/[id]/page.tsx | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index ed00389..83813f4 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -104,16 +104,16 @@ export default function ProductPage({ params }: ProductPageProps) { columns={[ { items: [ - { label: "Features", id: "features" }, - { label: "Pricing", id: "pricing" }, - { label: "Testimonials", id: "testimonials" } + { label: "Features", href: "#features" }, + { label: "Pricing", href: "#pricing" }, + { label: "Testimonials", href: "#testimonials" } ] }, { items: [ - { label: "About Us", id: "about" }, - { label: "Contact", id: "contact" }, - { label: "FAQ", id: "faq" } + { label: "About Us", href: "#about" }, + { label: "Contact", href: "#contact" }, + { label: "FAQ", href: "#faq" } ] }, { @@ -184,16 +184,16 @@ export default function ProductPage({ params }: ProductPageProps) { columns={[ { items: [ - { label: "Features", id: "features" }, - { label: "Pricing", id: "pricing" }, - { label: "Testimonials", id: "testimonials" } + { label: "Features", href: "#features" }, + { label: "Pricing", href: "#pricing" }, + { label: "Testimonials", href: "#testimonials" } ] }, { items: [ - { label: "About Us", id: "about" }, - { label: "Contact", id: "contact" }, - { label: "FAQ", id: "faq" } + { label: "About Us", href: "#about" }, + { label: "Contact", href: "#contact" }, + { label: "FAQ", href: "#faq" } ] }, { @@ -288,16 +288,16 @@ export default function ProductPage({ params }: ProductPageProps) { columns={[ { items: [ - { label: "Features", id: "features" }, - { label: "Pricing", id: "pricing" }, - { label: "Testimonials", id: "testimonials" } + { label: "Features", href: "#features" }, + { label: "Pricing", href: "#pricing" }, + { label: "Testimonials", href: "#testimonials" } ] }, { items: [ - { label: "About Us", id: "about" }, - { label: "Contact", id: "contact" }, - { label: "FAQ", id: "faq" } + { label: "About Us", href: "#about" }, + { label: "Contact", href: "#contact" }, + { label: "FAQ", href: "#faq" } ] }, { -- 2.49.1 From 63ac15d6114be7df052b3997acfb29aafd8fe55f Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Feb 2026 14:46:31 +0000 Subject: [PATCH 3/3] Update src/app/shop/page.tsx --- src/app/shop/page.tsx | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index 1922e5e..637938a 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -54,16 +54,16 @@ export default function ShopPage() { columns={[ { items: [ - { label: "Features", id: "features" }, - { label: "Pricing", id: "pricing" }, - { label: "Testimonials", id: "testimonials" } + { label: "Features", href: "#features" }, + { label: "Pricing", href: "#pricing" }, + { label: "Testimonials", href: "#testimonials" } ] }, { items: [ - { label: "About Us", id: "about" }, - { label: "Contact", id: "contact" }, - { label: "FAQ", id: "faq" } + { label: "About Us", href: "#about" }, + { label: "Contact", href: "#contact" }, + { label: "FAQ", href: "#faq" } ] }, { @@ -133,16 +133,16 @@ export default function ShopPage() { columns={[ { items: [ - { label: "Features", id: "features" }, - { label: "Pricing", id: "pricing" }, - { label: "Testimonials", id: "testimonials" } + { label: "Features", href: "#features" }, + { label: "Pricing", href: "#pricing" }, + { label: "Testimonials", href: "#testimonials" } ] }, { items: [ - { label: "About Us", id: "about" }, - { label: "Contact", id: "contact" }, - { label: "FAQ", id: "faq" } + { label: "About Us", href: "#about" }, + { label: "Contact", href: "#contact" }, + { label: "FAQ", href: "#faq" } ] }, { -- 2.49.1