From b4872697431728ec8ac3c514fd4602f80b854dbb Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 08:32:35 +0000 Subject: [PATCH 1/3] Update src/app/about/page.tsx --- src/app/about/page.tsx | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 4a468f0..75bc442 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -92,32 +92,32 @@ export default function AboutPage() { { title: "Collections", items: [ { label: "All Watches", href: "/collections" }, - { label: "Rolex", href: "/collections" }, - { label: "Omega", href: "/collections" }, - { label: "Patek Philippe", href: "/collections" } + { label: "Rolex", href: "/collections#rolex" }, + { label: "Omega", href: "/collections#omega" }, + { label: "Patek Philippe", href: "/collections#patek" } ] }, { title: "Company", items: [ { label: "About Us", href: "/about" }, - { label: "Our Story", href: "/about" }, - { label: "Expertise", href: "/about" }, - { label: "Careers", href: "/about" } + { label: "Our Story", href: "/about#story" }, + { label: "Expertise", href: "/about#expertise" }, + { label: "Careers", href: "#" } ] }, { title: "Customer Service", items: [ { label: "Contact Us", href: "/contact" }, - { label: "FAQ", href: "/contact" }, - { label: "Shipping & Returns", href: "/contact" }, - { label: "Authenticity Guarantee", href: "/contact" } + { label: "FAQ", href: "#" }, + { label: "Shipping & Returns", href: "#" }, + { label: "Authenticity Guarantee", href: "#" } ] }, { title: "Legal", items: [ - { label: "Privacy Policy", href: "/" }, - { label: "Terms of Service", href: "/" }, - { label: "Cookie Policy", href: "/" } + { label: "Privacy Policy", href: "#" }, + { label: "Terms of Service", href: "#" }, + { label: "Cookie Policy", href: "#" } ] } ]} -- 2.49.1 From 6d859a9983bc57510c253130ad4a113f6dbc41cb Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 08:32:36 +0000 Subject: [PATCH 2/3] Update src/app/collections/page.tsx --- src/app/collections/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/collections/page.tsx b/src/app/collections/page.tsx index cc39966..eacbbd2 100644 --- a/src/app/collections/page.tsx +++ b/src/app/collections/page.tsx @@ -41,8 +41,8 @@ export default function CollectionsPage() { tag="Premium Brands" tagIcon={Watch} textboxLayout="default" - useInvertedBackground="noInvert" - gridVariant="uniform-4-items" + useInvertedBackground={false} + gridVariant="four-items-2x2-equal-grid" animationType="slide-up" features={[ { -- 2.49.1 From b87f2e909da313b030428d47388f5fa0de24749a Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 08:32:37 +0000 Subject: [PATCH 3/3] Update src/app/page.tsx --- src/app/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index e58e658..8fe7feb 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -125,8 +125,8 @@ export default function HomePage() { tag="Premium Brands" tagIcon={Watch} textboxLayout="default" - useInvertedBackground="noInvert" - gridVariant="uniform-4-items" + useInvertedBackground={false} + gridVariant="four-items-2x2-equal-grid" animationType="slide-up" features={[ { -- 2.49.1