4 Commits

Author SHA1 Message Date
4359bb8333 Update src/app/page.tsx 2026-04-26 20:15:44 +00:00
c9a9c01d82 Merge version_2 into main
Merge version_2 into main
2026-04-26 20:06:23 +00:00
4ceda9bf00 Merge version_2 into main
Merge version_2 into main
2026-04-26 20:05:56 +00:00
082e957c21 Merge version_2 into main
Merge version_2 into main
2026-04-26 20:05:27 +00:00

View File

@@ -13,6 +13,7 @@ import PricingCardEight from '@/components/sections/pricing/PricingCardEight';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen'; import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
import ContactCTA from '@/components/sections/contact/ContactCTA';
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -36,6 +37,7 @@ export default function LandingPage() {
{ name: "About", id: "about" }, { name: "About", id: "about" },
{ name: "Rooms", id: "products" }, { name: "Rooms", id: "products" },
{ name: "Pricing", id: "pricing" }, { name: "Pricing", id: "pricing" },
{ name: "Reservation", id: "reservation" },
{ name: "Reviews", id: "testimonials" }, { name: "Reviews", id: "testimonials" },
{ name: "Contact", id: "contact" }, { name: "Contact", id: "contact" },
]} ]}
@@ -96,6 +98,17 @@ export default function LandingPage() {
/> />
</div> </div>
<div id="reservation" data-section="reservation">
<ContactCTA
tag="Reserve Now"
title="Book Your Stay Today"
description="Secure your bunk or private suite and get ready for an unforgettable experience in the city."
buttons={[{ text: "Book Now", href: "#" }]}
background={{ variant: "sparkles-gradient" }}
useInvertedBackground={false}
/>
</div>
<div id="products" data-section="products"> <div id="products" data-section="products">
<ProductCardTwo <ProductCardTwo
animationType="slide-up" animationType="slide-up"