From 266e367168b6906aa6e0dbafa296c2b0507d9fdc Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 15 Feb 2026 10:57:05 +0000 Subject: [PATCH 1/5] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 1dbed50..d86b5fa 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -33,7 +33,7 @@ export default function BlogPage() { { name: "Rooms", id: "rooms" }, { name: "Amenities", id: "amenities" }, { name: "About", id: "about" }, - { name: "Reviews", id: "reviews" }, + { name: "Blog", id: "/blog" }, { name: "Contact", id: "contact" } ]} bottomLeftText="5-Star Hospitality" From dfe1678b8011aa537a98fb41f3ea80b07263cf50 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 15 Feb 2026 10:57:06 +0000 Subject: [PATCH 2/5] 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 7e53ed3..1a195fa 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -34,7 +34,7 @@ export default function LuxuryHotelPage() { { name: "Rooms", id: "rooms" }, { name: "Amenities", id: "amenities" }, { name: "About", id: "about" }, - { name: "Reviews", id: "reviews" }, + { name: "Blog", id: "/blog" }, { name: "Contact", id: "contact" } ]} bottomLeftText="5-Star Hospitality" @@ -49,7 +49,7 @@ export default function LuxuryHotelPage() { socialLinks={[ { icon: Heart, label: "Favorites", href: "#rooms" }, { icon: MapPin, label: "Location", href: "#contact" }, - { icon: Star, label: "Reviews", href: "#reviews" } + { icon: Star, label: "Reviews", href: "#testimonials" } ]} linkCards={[ { From c493a2f2b24b63c339b88980ab0e611e77a4f046 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 15 Feb 2026 10:57:07 +0000 Subject: [PATCH 3/5] Update src/app/shop/[id]/page.tsx --- src/app/shop/[id]/page.tsx | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index 11248df..3038852 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -87,7 +87,11 @@ export default function ProductPage({ params }: ProductPageProps) { brandName="Luxury Suites" navItems={[ { name: "Home", id: "/" }, - { name: "Shop", id: "/shop" } + { name: "Rooms", id: "rooms" }, + { name: "Amenities", id: "amenities" }, + { name: "About", id: "about" }, + { name: "Blog", id: "/blog" }, + { name: "Contact", id: "contact" } ]} bottomLeftText="5-Star Hospitality" bottomRightText="reservations@luxurysuites.com" @@ -134,7 +138,11 @@ export default function ProductPage({ params }: ProductPageProps) { brandName="Luxury Suites" navItems={[ { name: "Home", id: "/" }, - { name: "Shop", id: "/shop" } + { name: "Rooms", id: "rooms" }, + { name: "Amenities", id: "amenities" }, + { name: "About", id: "about" }, + { name: "Blog", id: "/blog" }, + { name: "Contact", id: "contact" } ]} bottomLeftText="5-Star Hospitality" bottomRightText="reservations@luxurysuites.com" @@ -188,7 +196,11 @@ export default function ProductPage({ params }: ProductPageProps) { brandName="Luxury Suites" navItems={[ { name: "Home", id: "/" }, - { name: "Shop", id: "/shop" } + { name: "Rooms", id: "rooms" }, + { name: "Amenities", id: "amenities" }, + { name: "About", id: "about" }, + { name: "Blog", id: "/blog" }, + { name: "Contact", id: "contact" } ]} bottomLeftText="5-Star Hospitality" bottomRightText="reservations@luxurysuites.com" From c7a55de827bd1e18a7f429797d5f23174325ec03 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 15 Feb 2026 10:57:07 +0000 Subject: [PATCH 4/5] Update src/app/shop/page.tsx --- src/app/shop/page.tsx | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index f926074..4930e83 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -37,7 +37,11 @@ export default function ShopPage() { brandName="Luxury Suites" navItems={[ { name: "Home", id: "/" }, - { name: "Shop", id: "/shop" } + { name: "Rooms", id: "rooms" }, + { name: "Amenities", id: "amenities" }, + { name: "About", id: "about" }, + { name: "Blog", id: "/blog" }, + { name: "Contact", id: "contact" } ]} bottomLeftText="5-Star Hospitality" bottomRightText="reservations@luxurysuites.com" @@ -83,7 +87,11 @@ export default function ShopPage() { brandName="Luxury Suites" navItems={[ { name: "Home", id: "/" }, - { name: "Shop", id: "/shop" } + { name: "Rooms", id: "rooms" }, + { name: "Amenities", id: "amenities" }, + { name: "About", id: "about" }, + { name: "Blog", id: "/blog" }, + { name: "Contact", id: "contact" } ]} bottomLeftText="5-Star Hospitality" bottomRightText="reservations@luxurysuites.com" From 5bbfc32b0cb9d96d00c2cc880cdd90f22bb1edc1 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 15 Feb 2026 10:57:08 +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 60e8e1d..dd1213c 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: #010912;;;; - --card: #152840;;;; - --foreground: #e6f0ff;;;; - --primary-cta: #cee7ff;;;; - --secondary-cta: #0e1a29;;;; - --accent: #3f5c79;;;; - --background-accent: #004a93;;;; */ + /* --background: #060000;;;; + --card: #1d0d0d;;;; + --foreground: #ffe6e6;;;; + --primary-cta: #ff3d4a;;;; + --secondary-cta: #1f0a0a;;;; + --accent: #7b2d2d;;;; + --background-accent: #b8111f;;;; */ - --background: #010912;;;; - --card: #152840;;;; - --foreground: #e6f0ff;;;; - --primary-cta: #cee7ff;;;; - --secondary-cta: #0e1a29;;;; - --accent: #3f5c79;;;; - --background-accent: #004a93;;;; + --background: #060000;;;; + --card: #1d0d0d;;;; + --foreground: #ffe6e6;;;; + --primary-cta: #ff3d4a;;;; + --secondary-cta: #1f0a0a;;;; + --accent: #7b2d2d;;;; + --background-accent: #b8111f;;;; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);