diff --git a/src/app/page.tsx b/src/app/page.tsx
index f2386db..94c4fc9 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -11,6 +11,7 @@ import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCa
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
+import PricingCardEight from '@/components/sections/pricing/PricingCardEight';
import { Award, Bed, Sparkles } from "lucide-react";
export default function LandingPage() {
@@ -37,6 +38,7 @@ export default function LandingPage() {
{ name: "About Us", id: "#about" },
{ name: "Amenities", id: "#amenities" },
{ name: "Rooms", id: "#rooms" },
+ { name: "Pricing", id: "#pricing" },
{ name: "Testimonials", id: "#testimonials" },
{ name: "Contact", id: "#contact" }
]}
@@ -120,6 +122,35 @@ export default function LandingPage() {
useInvertedBackground={true}
/>
+
+
console.log('Book Standard Room'), target: "_blank" }]
+ },
+ {
+ id: "deluxe-room-plan", badge: "Deluxe", price: "Ksh 6,500 / night", subtitle: "Spacious & Elegant", features: [
+ "Check-in: 2:00 PM", "Check-out: 11:00 AM", "Premium Wi-Fi", "Complimentary Breakfast", "Access to Gym & Pool", "Late Check-out option", "Enhanced Room Service"
+ ],
+ buttons: [{ text: "Book on Booking.com", href: "https://www.booking.com/hotel/ke/ayo-suites-and-hotel", onClick: () => console.log('Book Deluxe Room'), target: "_blank" }]
+ },
+ {
+ id: "executive-suite-plan", badge: "Executive Suite", price: "Ksh 9,000 / night", subtitle: "Luxury & Privacy", features: [
+ "Check-in: 2:00 PM", "Check-out: 11:00 AM", "High-speed Wi-Fi", "Executive Breakfast", "Access to Gym & Pool", "Dedicated Concierge", "Airport Transfer"
+ ],
+ buttons: [{ text: "Book on Booking.com", href: "https://www.booking.com/hotel/ke/ayo-suites-and-hotel", onClick: () => console.log('Book Executive Suite'), target: "_blank" }]
+ }
+ ]}
+ animationType="slide-up"
+ textboxLayout="default"
+ useInvertedBackground={false}
+ />
+
);
-}
+}
\ No newline at end of file