Add src/app/pricing/page.tsx

This commit is contained in:
2026-02-14 09:13:17 +00:00
parent dba7707e60
commit 240b1439ba

112
src/app/pricing/page.tsx Normal file
View File

@@ -0,0 +1,112 @@
"use client"
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import PricingCardOne from '@/components/sections/pricing/PricingCardOne';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import { Sparkles, Star, Crown } from "lucide-react";
export default function PricingPage() {
return (
<ThemeProvider
defaultButtonVariant="icon-arrow"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="mediumLarge"
sizing="mediumLargeSizeLargeTitles"
background="none"
cardStyle="gradient-bordered"
primaryButtonStyle="inset-glow"
secondaryButtonStyle="radial-glow"
headingFontWeight="semibold"
>
<div id="nav" data-section="nav">
<NavbarStyleCentered
brandName="Luxe Hotel"
navItems={[
{ name: "Home", id: "hero" },
{ name: "Rooms", id: "rooms" },
{ name: "Amenities", id: "amenities" },
{ name: "Pricing", id: "/pricing" },
{ name: "Contact", id: "contact" }
]}
button={{
text: "Book Now", href: "contact"
}}
/>
</div>
<div id="pricing" data-section="pricing">
<PricingCardOne
title="Choose Your Perfect Getaway"
description="Select from our flexible room packages designed to meet every traveler's needs and budget."
tag="Special Offers"
tagIcon={Sparkles}
plans={[
{
id: "weekend", badge: "Popular", badgeIcon: Sparkles,
price: "$149/night", subtitle: "Perfect for quick getaways", features: [
"Complimentary breakfast", "Free Wi-Fi throughout hotel", "Daily housekeeping", "Access to fitness center"
]
},
{
id: "extended", badge: "Best Value", badgeIcon: Star,
price: "$279/night", subtitle: "Ideal for extended stays", features: [
"Premium room amenities", "Spa credits included", "Free airport transfer", "Personalized concierge service", "Restaurant discount vouchers"
]
},
{
id: "exclusive", badge: "Luxury", badgeIcon: Crown,
price: "$599/night", subtitle: "Ultimate luxury experience", features: [
"Presidential suite upgrade", "24/7 butler service", "Unlimited spa access", "Private dining experiences", "Exclusive rooftop access", "Complimentary car service"
]
}
]}
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={true}
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{
title: "Navigate", items: [
{ label: "Home", href: "hero" },
{ label: "Rooms", href: "rooms" },
{ label: "Amenities", href: "amenities" },
{ label: "Pricing", href: "/pricing" }
]
},
{
title: "Resources", items: [
{ label: "About Us", href: "about" },
{ label: "FAQ", href: "faq" },
{ label: "Testimonials", href: "testimonials" },
{ label: "Loyalty Program", href: "#" }
]
},
{
title: "Contact", items: [
{ label: "Phone: +1 (555) 123-4567", href: "#" },
{ label: "Email: info@luxehotel.com", href: "#" },
{ label: "Address: 123 Luxury Lane, City, State", href: "#" },
{ label: "Book Now", href: "/pricing" }
]
},
{
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Cookie Policy", href: "#" }
]
}
]}
bottomLeftText="© 2025 Luxe Hotel. All rights reserved."
bottomRightText="Designed for exceptional hospitality"
/>
</div>
</ThemeProvider>
);
}