From 718d84f224fa9f31fd26f9a23696ccecdfe68549 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 15:05:32 +0000 Subject: [PATCH 1/2] Add src/app/about-us/page.tsx --- src/app/about-us/page.tsx | 244 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 244 insertions(+) create mode 100644 src/app/about-us/page.tsx diff --git a/src/app/about-us/page.tsx b/src/app/about-us/page.tsx new file mode 100644 index 0000000..db614b0 --- /dev/null +++ b/src/app/about-us/page.tsx @@ -0,0 +1,244 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import SplitAbout from '@/components/sections/about/SplitAbout'; +import FeatureCardOne from '@/components/sections/feature/FeatureCardOne'; +import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; +import { Accessibility, Utensils, Coffee, Sofa, MapPin, CreditCard, Users, Clock } from 'lucide-react'; + +export default function AboutUsPage() { + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +} -- 2.49.1 From 36836edb398284e5794684ef8db975f8fa7d87cf Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 15:05:33 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 125e500..54ea0eb 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -32,6 +32,7 @@ export default function LandingPage() { { name: "Menu", id: "about" }, { name: "Experience", id: "features" }, { name: "Reviews", id: "testimonial" }, + { name: "About Us", id: "/about-us" }, { name: "Book", id: "contact" }, { name: "FAQs", id: "faq" } ]} @@ -242,7 +243,7 @@ export default function LandingPage() { }, { items: [ - { label: "About Us", href: "#about" }, + { label: "About Us", href: "/about-us" }, { label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" } ] -- 2.49.1