Files
d418e9e4-b78e-4b1e-81f3-441…/src/app/amenities/page.tsx

115 lines
4.8 KiB
TypeScript

"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import FeatureBento from '@/components/sections/feature/FeatureBento';
import AboutMetric from '@/components/sections/about/AboutMetric';
import FooterBase from '@/components/sections/footer/FooterBase';
import Link from 'next/link';
import { Plane, MapPin, Phone, Waves, Dumbbell, ChefHat, Sparkles, Star, Users, Award } from 'lucide-react';
export default function AmenitiesPage() {
return (
<ThemeProvider
defaultButtonVariant="bounce-effect"
defaultTextAnimation="background-highlight"
borderRadius="pill"
contentWidth="mediumSmall"
sizing="largeSmallSizeMediumTitles"
background="aurora"
cardStyle="soft-shadow"
primaryButtonStyle="primary-glow"
secondaryButtonStyle="radial-glow"
headingFontWeight="extrabold"
>
<div id="nav" data-section="nav">
<NavbarStyleCentered
brandName="Serenity Hotels"
navItems={[
{ name: "Home", id: "/" },
{ name: "Rooms", id: "/rooms" },
{ name: "Amenities", id: "/amenities" },
{ name: "Reviews", id: "/reviews" },
{ name: "Contact", id: "/contact" }
]}
button={{ text: "Book Now", href: "/booking" }}
/>
</div>
<div id="amenities" data-section="amenities">
<FeatureBento
title="World-Class Amenities"
description="Indulge in our extensive array of premium facilities designed to enhance your stay and provide the ultimate hospitality experience."
textboxLayout="default"
useInvertedBackground="noInvert"
animationType="slide-up"
features={[
{
title: "Olympic-Size Swimming Pool", description: "Relax and swim in our pristine heated pool overlooking the landscape.", bentoComponent: "globe"
},
{
title: "Spa & Wellness Center", description: "Experience rejuvenation with world-class spa treatments and wellness programs.", bentoComponent: "animated-bar-chart"
},
{
title: "Fine Dining Restaurant", description: "Savor exceptional cuisine crafted by our award-winning culinary team.", bentoComponent: "map"
},
{
title: "24/7 Fitness Center", description: "Stay active with our state-of-the-art gym and personal training services.", bentoComponent: "line-chart"
},
{
title: "Concierge Services", description: "Our dedicated team assists with reservations, tours, and special requests.", bentoComponent: "icon-info-cards", items: [
{ icon: Plane, label: "Airport Transfer", value: "24/7" },
{ icon: MapPin, label: "City Tours", value: "Daily" },
{ icon: Phone, label: "Support", value: "Always" }
]
}
]}
/>
</div>
<div id="amenity-metrics" data-section="amenity-metrics">
<AboutMetric
title="Experience Premium Services That Define Luxury and Excellence"
useInvertedBackground="invertDefault"
metrics={[
{ icon: Waves, label: "Pool Area", value: "5000 sq ft" },
{ icon: Dumbbell, label: "Fitness Center", value: "3000 sq ft" },
{ icon: ChefHat, label: "Restaurants", value: "3" },
{ icon: Sparkles, label: "Spa Rooms", value: "8" }
]}
/>
</div>
<FooterBase
logoText="Serenity Hotels"
copyrightText="© 2025 Serenity Hotels Group. All rights reserved."
columns={[
{
title: "Accommodations", items: [
{ label: "Luxury Suites", href: "/rooms" },
{ label: "Ocean View Rooms", href: "/rooms" },
{ label: "Standard Rooms", href: "/rooms" },
{ label: "Group Bookings", href: "/contact" }
]
},
{
title: "Amenities", items: [
{ label: "Spa & Wellness", href: "/amenities" },
{ label: "Swimming Pool", href: "/amenities" },
{ label: "Fine Dining", href: "/amenities" },
{ label: "Fitness Center", href: "/amenities" }
]
},
{
title: "Company", items: [
{ label: "About Us", href: "/about" },
{ label: "Contact", href: "/contact" },
{ label: "Careers", href: "#" },
{ label: "Blog", href: "#" }
]
}
]}
/>
</ThemeProvider>
);
}