Merge version_2 into main #2

Merged
bender merged 1 commits from version_2 into main 2026-06-03 08:02:23 +00:00

View File

@@ -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}
/>
</div>
<div id="pricing" data-section="pricing">
<PricingCardEight
title="Transparent Pricing & Easy Booking"
description="Select your ideal room and enjoy transparent pricing with direct booking options. All rates include complimentary breakfast and access to hotel amenities."
plans={[
{
id: "standard-room-plan", badge: "Standard", price: "Ksh 4,000 / night", subtitle: "Comfortable & Cozy", features: [
"Check-in: 2:00 PM", "Check-out: 11:00 AM", "Free Wi-Fi", "Complimentary Breakfast", "Access to Gym & Pool", "Flexible Cancellation"
],
buttons: [{ text: "Book on Booking.com", href: "https://www.booking.com/hotel/ke/ayo-suites-and-hotel", onClick: () => 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}
/>
</div>
<div id="metrics" data-section="metrics">
<MetricCardThree
title="Our Commitment to Excellence"
@@ -170,7 +201,7 @@ export default function LandingPage() {
<div id="contact" data-section="contact">
<ContactSplitForm
title="Get in Touch"
description="Have a question or need to make a special request regarding your stay at Ayo Suites And Hotel? Our dedicated team is here to assist you 24/7. Fill out the form or reach us directly."
description="Have a question or need to make a special request regarding your stay at Ayo Suites And Hotel? Our dedicated team is here to assist you 24/7. We are conveniently located at [Your Full Address Here], Nairobi, Kenya, ensuring easy access to all city attractions. Fill out the form or reach us directly."
inputs={[
{ name: "name", type: "text", placeholder: "Your Name", required: true },
{ name: "email", type: "email", placeholder: "Your Email", required: true },
@@ -192,11 +223,11 @@ export default function LandingPage() {
logoText="Ayo Suites And Hotel"
columns={[
{ items: [{ label: "Home", href: "#hero" }, { label: "About Us", href: "#about" }, { label: "Amenities", href: "#amenities" }] },
{ items: [{ label: "Rooms & Suites", href: "#rooms" }, { label: "Testimonials", href: "#testimonials" }, { label: "FAQs", href: "#faq" }] },
{ items: [{ label: "Rooms & Suites", href: "#rooms" }, { label: "Pricing", href: "#pricing" }, { label: "Testimonials", href: "#testimonials" }, { label: "FAQs", href: "#faq" }] },
{ items: [{ label: "Contact Us", href: "#contact" }, { label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] }
]}
/>
</div>
</ThemeProvider>
);
}
}