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