From 2d811175222babf81d42e58cdb974c88844cee7c Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 14 Feb 2026 10:06:42 +0000 Subject: [PATCH 1/6] Add src/app/about/page.tsx --- src/app/about/page.tsx | 67 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 src/app/about/page.tsx diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..d51b878 --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,67 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import MediaAbout from '@/components/sections/about/MediaAbout'; +import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; +import ReactLenis from "lenis/react"; + +export default function AboutPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +} -- 2.49.1 From c3710818fe456511b21325c5604ee2e399f9ecc4 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 14 Feb 2026 10:06:42 +0000 Subject: [PATCH 2/6] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index ed9cc30..139b1f5 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -32,7 +32,8 @@ export default function BlogPage() { { name: "Rooms", id: "rooms" }, { name: "Amenities", id: "amenities" }, { name: "Pricing", id: "pricing" }, - { name: "Reviews", id: "reviews" }, + { name: "Reviews", id: "testimonials" }, + { name: "About", id: "/about" }, { name: "Contact", id: "contact" } ]} /> @@ -72,4 +73,4 @@ export default function BlogPage() { ); -} \ No newline at end of file +} -- 2.49.1 From 59aa28cce088d77f7ad8d72a86e0017c199023eb Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 14 Feb 2026 10:06:43 +0000 Subject: [PATCH 3/6] Update src/app/layout.tsx --- src/app/layout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 824b881..ab0b2c4 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1266,4 +1266,4 @@ export default function RootLayout({ ); -} \ No newline at end of file +} -- 2.49.1 From cd88fd8eca19779a38e02118db933d59299ad8a6 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 14 Feb 2026 10:06:44 +0000 Subject: [PATCH 4/6] Update src/app/page.tsx --- src/app/page.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 75279ab..c86d217 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -30,10 +30,12 @@ export default function LandingPage() { @@ -69,7 +71,7 @@ export default function LandingPage() { imageAlt="Luxe Haven hotel exterior" useInvertedBackground={false} buttons={[ - { text: "Learn More", href: "amenities" } + { text: "Learn More", href: "/about" } ]} /> @@ -186,4 +188,4 @@ export default function LandingPage() { ); -} \ No newline at end of file +} -- 2.49.1 From c29e4ab0efa966a6c2e66eb55e59687e72add1a3 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 14 Feb 2026 10:06:45 +0000 Subject: [PATCH 5/6] Update src/app/shop/[id]/page.tsx --- src/app/shop/[id]/page.tsx | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index a380d96..b3db7bf 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -86,7 +86,11 @@ export default function ProductPage({ params }: ProductPageProps) { brandName="Luxe Haven" navItems={[ { name: "Home", id: "/" }, - { name: "Shop", id: "/shop" }, + { name: "Rooms", id: "rooms" }, + { name: "Amenities", id: "amenities" }, + { name: "Pricing", id: "pricing" }, + { name: "Reviews", id: "testimonials" }, + { name: "About", id: "/about" }, { name: "Contact", id: "contact" } ]} button={{ text: "Cart", onClick: () => setCartOpen(true) }} @@ -127,7 +131,11 @@ export default function ProductPage({ params }: ProductPageProps) { brandName="Luxe Haven" navItems={[ { name: "Home", id: "/" }, - { name: "Shop", id: "/shop" }, + { name: "Rooms", id: "rooms" }, + { name: "Amenities", id: "amenities" }, + { name: "Pricing", id: "pricing" }, + { name: "Reviews", id: "testimonials" }, + { name: "About", id: "/about" }, { name: "Contact", id: "contact" } ]} button={{ text: "Cart", onClick: () => setCartOpen(true) }} @@ -175,7 +183,11 @@ export default function ProductPage({ params }: ProductPageProps) { brandName="Luxe Haven" navItems={[ { name: "Home", id: "/" }, - { name: "Shop", id: "/shop" }, + { name: "Rooms", id: "rooms" }, + { name: "Amenities", id: "amenities" }, + { name: "Pricing", id: "pricing" }, + { name: "Reviews", id: "testimonials" }, + { name: "About", id: "/about" }, { name: "Contact", id: "contact" } ]} button={{ text: "Cart", onClick: () => setCartOpen(true) }} @@ -227,4 +239,4 @@ export default function ProductPage({ params }: ProductPageProps) { ); -} \ No newline at end of file +} -- 2.49.1 From 656755b19a670c6cce399beb96997dd048398797 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 14 Feb 2026 10:06:45 +0000 Subject: [PATCH 6/6] Update src/app/shop/page.tsx --- src/app/shop/page.tsx | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index 8102cf9..bd46b88 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -38,7 +38,11 @@ export default function ShopPage() { brandName="Luxe Haven" navItems={[ { name: "Home", id: "/" }, - { name: "Shop", id: "/shop" }, + { name: "Rooms", id: "rooms" }, + { name: "Amenities", id: "amenities" }, + { name: "Pricing", id: "pricing" }, + { name: "Reviews", id: "testimonials" }, + { name: "About", id: "/about" }, { name: "Contact", id: "contact" } ]} button={{ text: "Cart", onClick: () => setCartOpen(true) }} @@ -78,7 +82,11 @@ export default function ShopPage() { brandName="Luxe Haven" navItems={[ { name: "Home", id: "/" }, - { name: "Shop", id: "/shop" }, + { name: "Rooms", id: "rooms" }, + { name: "Amenities", id: "amenities" }, + { name: "Pricing", id: "pricing" }, + { name: "Reviews", id: "testimonials" }, + { name: "About", id: "/about" }, { name: "Contact", id: "contact" } ]} button={{ text: "Cart", onClick: () => setCartOpen(true) }} @@ -105,4 +113,4 @@ export default function ShopPage() { ); -} \ No newline at end of file +} -- 2.49.1