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 +} 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 +} 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 +} 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 ( + + + +
+ +
+ + +
+ ); +} 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 +} 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 +}