Add src/app/rooms/page.tsx

This commit is contained in:
2026-03-28 09:21:21 +00:00
parent 76e5380b23
commit 573207380e

71
src/app/rooms/page.tsx Normal file
View File

@@ -0,0 +1,71 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import { Star, ShieldCheck, Zap } from "lucide-react";
export default function RoomsPage() {
return (
<ThemeProvider
defaultButtonVariant="shift-hover"
defaultTextAnimation="entrance-slide"
borderRadius="soft"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "/" },
{ name: "Rooms", id: "/rooms" },
{ name: "About", id: "/#about" },
]}
brandName="LuxuryEstate"
/>
</div>
<div id="rooms" data-section="rooms">
<FeatureCardNineteen
title="Our Exclusive Suites"
description="Select your sanctuary from our collection of ten bespoke suites, each uniquely designed for comfort."
textboxLayout="split-description"
useInvertedBackground={false}
features={[
{
id: 1,
tag: "Starting at $1,200/night", title: "Royal Master Suite", subtitle: "Maximum Luxury", description: "Features a king-sized bed, panoramic ocean views, and a private wraparound terrace.", imageSrc: "http://img.b2bpic.net/free-photo/luxury-bedroom-with-modern-furniture_1203-2415.jpg", buttons: [{ text: "Book Now", href: "#" }]
},
{
id: 2,
tag: "Starting at $850/night", title: "Garden View Junior Suite", subtitle: "Tranquil Escape", description: "Overlooking our lush private gardens, this suite offers a serene retreat with natural light.", imageSrc: "http://img.b2bpic.net/free-photo/hotel-room-with-open-balcony-soft-light-through-curtains-cozy-bedroom_169016-70022.jpg", buttons: [{ text: "Book Now", href: "#" }]
},
{
id: 3,
tag: "Starting at $950/night", title: "Poolside Retreat", subtitle: "Resort Experience", description: "Direct access to the swimming pool area with contemporary decor and high-end tech amenities.", imageSrc: "http://img.b2bpic.net/free-photo/modern-bedroom-with-comfortable-bed-and-large-windows_1203-2426.jpg", buttons: [{ text: "Book Now", href: "#" }]
}
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseReveal
columns={[
{ title: "Estate", items: [{ label: "Home", href: "/" }, { label: "Rooms", href: "/rooms" }] },
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] }
]}
copyrightText="© 2024 LuxuryEstate. All rights reserved."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}