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