From 4584ae7aeb32d55e0553a6563f49a95be317e0c8 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 19:08:15 +0000 Subject: [PATCH 1/2] Add src/app/about/page.tsx --- src/app/about/page.tsx | 125 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 125 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..9e72ebd --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,125 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import MediaAbout from '@/components/sections/about/MediaAbout'; +import FeatureCardTwentyTwo from '@/components/sections/feature/FeatureCardTwentyTwo'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; +import { Sparkles } from "lucide-react"; + +export default function AboutPage() { + return ( + + + +
+ +
+ +
+ +
+ + +
+ ); +} -- 2.49.1 From d5fedc125525330e1f7c8f82756a6406f96bbbd0 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 19:08:16 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 7ed0f32..09c68c9 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -34,7 +34,8 @@ export default function LandingPage() { { name: "Rooms & Suites", id: "about" }, { name: "Amenities", id: "features" }, { name: "Guests Love Us", id: "testimonials" }, - { name: "Booking", id: "pricing" } + { name: "Booking", id: "pricing" }, + { name: "About", id: "/about" } ]} button={{ text: "Reserve Now", href: "#pricing" @@ -230,7 +231,7 @@ export default function LandingPage() { }, { title: "Company", items: [ - { label: "About Us", href: "#about" }, + { label: "About Us", href: "/about" }, { label: "Guest Reviews", href: "#testimonials" }, { label: "Contact", href: "#contact" }, { label: "Careers", href: "#" } -- 2.49.1