From 969d5cf41991963966374529fdf642992a95dbd1 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 14 Feb 2026 09:13:14 +0000 Subject: [PATCH 1/6] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index d9bbba4..57ed5f2 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -28,10 +28,10 @@ export default function BlogPage() { ); -} \ No newline at end of file +} -- 2.49.1 From 943ef6980ace1babf57422dbf8f6a90b55a2b4d5 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 14 Feb 2026 09:13:15 +0000 Subject: [PATCH 2/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 02658e2..515de89 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1260,4 +1260,4 @@ export default function RootLayout({ ); -} \ No newline at end of file +} -- 2.49.1 From dba7707e60af1c6bc457cd5185153997f97f8156 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 14 Feb 2026 09:13:16 +0000 Subject: [PATCH 3/6] Update src/app/page.tsx --- src/app/page.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index ab2ce64..fee14f9 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -34,7 +34,7 @@ export default function LandingPage() { { name: "Home", id: "hero" }, { name: "Rooms", id: "rooms" }, { name: "Amenities", id: "amenities" }, - { name: "Pricing", id: "pricing" }, + { name: "Pricing", id: "/pricing" }, { name: "Contact", id: "contact" } ]} button={{ @@ -79,7 +79,7 @@ export default function LandingPage() { text: "View Our Story", href: "#" }, { - text: "Book a Stay", href: "pricing" + text: "Book a Stay", href: "/pricing" } ]} /> @@ -248,7 +248,7 @@ export default function LandingPage() { useInvertedBackground={false} buttons={[ { - text: "Book Now", href: "pricing" + text: "Book Now", href: "/pricing" }, { text: "Contact Us", href: "#" @@ -265,7 +265,7 @@ export default function LandingPage() { { label: "Home", href: "hero" }, { label: "Rooms", href: "rooms" }, { label: "Amenities", href: "amenities" }, - { label: "Pricing", href: "pricing" } + { label: "Pricing", href: "/pricing" } ] }, { @@ -281,7 +281,7 @@ export default function LandingPage() { { label: "Phone: +1 (555) 123-4567", href: "#" }, { label: "Email: info@luxehotel.com", href: "#" }, { label: "Address: 123 Luxury Lane, City, State", href: "#" }, - { label: "Book Now", href: "pricing" } + { label: "Book Now", href: "/pricing" } ] }, { @@ -298,4 +298,4 @@ export default function LandingPage() { ); -} \ No newline at end of file +} -- 2.49.1 From 240b1439ba0dbb4e50de7c4e7abf8cc91db9c66d Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 14 Feb 2026 09:13:17 +0000 Subject: [PATCH 4/6] Add src/app/pricing/page.tsx --- src/app/pricing/page.tsx | 112 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 112 insertions(+) create mode 100644 src/app/pricing/page.tsx diff --git a/src/app/pricing/page.tsx b/src/app/pricing/page.tsx new file mode 100644 index 0000000..caa557d --- /dev/null +++ b/src/app/pricing/page.tsx @@ -0,0 +1,112 @@ +"use client" + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import PricingCardOne from '@/components/sections/pricing/PricingCardOne'; +import FooterSimple from '@/components/sections/footer/FooterSimple'; +import { Sparkles, Star, Crown } from "lucide-react"; + +export default function PricingPage() { + return ( + + + +
+ +
+ + +
+ ); +} -- 2.49.1 From fc31f736b3cb1990676095977e5809f9bb586cee Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 14 Feb 2026 09:13:17 +0000 Subject: [PATCH 5/6] Update src/app/shop/[id]/page.tsx --- src/app/shop/[id]/page.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index ba2a8c6..0853759 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -85,7 +85,7 @@ export default function ProductPage({ params }: ProductPageProps) { setCartOpen(true) }} @@ -118,7 +118,7 @@ export default function ProductPage({ params }: ProductPageProps) { setCartOpen(true) }} @@ -158,7 +158,7 @@ export default function ProductPage({ params }: ProductPageProps) { setCartOpen(true) }} @@ -205,7 +205,7 @@ export default function ProductPage({ params }: ProductPageProps) { columns={[ { title: "Navigate", items: [ - { label: "Home", href: "/" }, + { label: "Home", href: "hero" }, { label: "Shop", href: "/shop" } ] }, @@ -238,4 +238,4 @@ export default function ProductPage({ params }: ProductPageProps) { ); -} \ No newline at end of file +} -- 2.49.1 From e959256a4430ccfd738c779e237792ea3e0d1843 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 14 Feb 2026 09:13:18 +0000 Subject: [PATCH 6/6] Update src/app/shop/page.tsx --- src/app/shop/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index 2793682..86c2551 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -37,7 +37,7 @@ export default function ShopPage() { setCartOpen(true) }} @@ -69,7 +69,7 @@ export default function ShopPage() { setCartOpen(true) }} @@ -91,7 +91,7 @@ export default function ShopPage() { columns={[ { title: "Navigate", items: [ - { label: "Home", href: "/" }, + { label: "Home", href: "hero" }, { label: "Shop", href: "/shop" } ] }, @@ -124,4 +124,4 @@ export default function ShopPage() { ); -} \ No newline at end of file +} -- 2.49.1