Initial commit

This commit is contained in:
dk
2026-01-29 21:49:47 +02:00
commit 38dece9514
301 changed files with 58521 additions and 0 deletions

200
src/app/booking/page.tsx Normal file
View File

@@ -0,0 +1,200 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import PricingCardEight from '@/components/sections/pricing/PricingCardEight';
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import { Sparkles, Crown, Gem, Heart } from 'lucide-react';
export default function BookingPage() {
return (
<ThemeProvider
defaultButtonVariant="hover-magnetic"
defaultTextAnimation="entrance-slide"
borderRadius="soft"
contentWidth="small"
sizing="mediumSizeLargeTitles"
background="floatingGradient"
cardStyle="gradient-radial"
primaryButtonStyle="gradient"
secondaryButtonStyle="radial-glow"
headingFontWeight="semibold"
>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "Rooms", id: "/rooms" },
{ name: "Amenities", id: "/amenities" },
{ name: "Booking", id: "/booking" },
{ name: "Contact", id: "/contact" }
]}
brandName="Luxury Stays"
bottomLeftText="Worldwide Hospitality"
bottomRightText="reservations@luxurystays.com"
/>
</div>
<div id="pricing" data-section="pricing">
<PricingCardEight
title="Exclusive Booking Packages"
description="Choose from our carefully crafted accommodation packages, each designed to provide exceptional value and unforgettable luxury experiences."
plans={[
{
id: "standard",
badge: "Best Value",
badgeIcon: Sparkles,
price: "$189/night",
subtitle: "Perfect for solo travelers",
buttons: [
{ text: "Book Deluxe", href: "/contact" }
],
features: [
"Free Wi-Fi throughout",
"Complimentary breakfast",
"24/7 concierge service",
"Fitness center access"
]
},
{
id: "premium",
badge: "Most Popular",
badgeIcon: Crown,
price: "$249/night",
subtitle: "Ideal for families",
buttons: [
{ text: "Book Family Suite", href: "/contact" }
],
features: [
"Everything in Standard",
"Private room service",
"Spa & wellness access",
"Restaurant discounts",
"Late checkout (2 PM)"
]
},
{
id: "luxury",
badge: "VIP Experience",
badgeIcon: Gem,
price: "$349/night",
subtitle: "Ultimate luxury escape",
buttons: [
{ text: "Book Penthouse", href: "/contact" }
],
features: [
"Everything in Family Suite",
"Exclusive penthouse access",
"Personal butler service",
"Premium dining allowance",
"Airport transfers included"
]
}
]}
animationType="slide-up"
textboxLayout="default"
useInvertedBackground="noInvert"
/>
</div>
<div id="metric" data-section="metric">
<MetricCardEleven
title="Booking Confidence Metrics"
description="Trust in our proven track record of exceptional hospitality and guest satisfaction across all booking experiences."
metrics={[
{
id: "1",
value: "99%",
title: "Booking Satisfaction",
description: "Guests consistently rate their booking experience as seamless and efficient",
imageSrc: "https://img.b2bpic.net/free-photo/lovely-family-enjoying-new-year-party_23-2149173232.jpg",
imageAlt: "Happy hotel guests"
},
{
id: "2",
value: "24/7",
title: "Support Availability",
description: "Round-the-clock assistance for all your booking needs and special requests",
imageSrc: "https://img.b2bpic.net/free-photo/concierge-assists-with-checkin-hotel_482257-90464.jpg",
imageAlt: "Hotel concierge service"
}
]}
animationType="slide-up"
textboxLayout="default"
useInvertedBackground="invertDefault"
/>
</div>
<div id="testimonial" data-section="testimonial">
<TestimonialCardTwelve
testimonials={[
{
id: "1",
name: "Sarah Thompson",
imageSrc: "https://img.b2bpic.net/free-photo/young-businesswoman-portrait-office_1262-1506.jpg",
imageAlt: "Sarah Thompson"
},
{
id: "2",
name: "Michael Chen",
imageSrc: "https://img.b2bpic.net/free-photo/portrait-smiley-business-woman_23-2148603029.jpg",
imageAlt: "Michael Chen"
},
{
id: "3",
name: "Emma Rodriguez",
imageSrc: "https://img.b2bpic.net/free-photo/happy-business-woman-white-shirt_23-2148095748.jpg",
imageAlt: "Emma Rodriguez"
},
{
id: "4",
name: "James Wilson",
imageSrc: "https://img.b2bpic.net/free-photo/closeup-smiling-beautiful-adult-businesswoman_1262-1760.jpg",
imageAlt: "James Wilson"
}
]}
cardTitle="Thousands of guests have chosen our packages and experienced seamless booking with exceptional value and personalized service"
cardTag="Booking Reviews"
cardTagIcon={Heart}
useInvertedBackground="noInvert"
/>
</div>
<FooterLogoEmphasis
logoText="LUXURY STAYS"
columns={[
{
items: [
{ label: "About Us", href: "/about" },
{ label: "Our Rooms", href: "/rooms" },
{ label: "Amenities", href: "/amenities" }
]
},
{
items: [
{ label: "Booking", href: "/booking" },
{ label: "Special Offers", href: "/contact" },
{ label: "Loyalty Program", href: "#" }
]
},
{
items: [
{ label: "Contact Us", href: "/contact" },
{ label: "Careers", href: "#" },
{ label: "Sustainability", href: "#" }
]
},
{
items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Accessibility", href: "#" }
]
}
]}
/>
</ThemeProvider>
);
}