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 ( + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +} 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: "#" } ]