Update src/app/rooms/page.tsx

This commit is contained in:
2026-04-03 13:28:10 +00:00
parent ab117a8980
commit 9d5e90a9cc

View File

@@ -1,33 +1,11 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen';
export default function RoomsPage() {
return (
<ThemeProvider>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay navItems={[{name: "Home", id: "/"}, {name: "About", id: "/about"}, {name: "Contact", id: "/contact"}, {name: "Rooms", id: "/rooms"}, {name: "Dining", id: "/dining"}, {name: "Amenities", id: "/amenities"}, {name: "Gallery", id: "/gallery"}]} brandName="RSDdison Hotel" />
</div>
<main>
<div id="rooms" data-section="rooms">
<FeatureCardNineteen
title="Our Rooms & Suites"
description="Discover ultimate comfort in our thoughtfully designed living spaces."
textboxLayout="split"
useInvertedBackground={false}
features={[
{ id: 1, tag: "Luxury", title: "Presidential Suite", subtitle: "Spacious and refined", description: "Spacious balcony and forest views.", imageSrc: "http://img.b2bpic.net/free-photo/luxurious-villa-with-modern-architectural-design_23-2151694098.jpg?_wi=1" },
{ id: 2, tag: "Comfort", title: "Deluxe Room", subtitle: "Modern retreat", description: "Perfect for relaxation.", imageSrc: "http://img.b2bpic.net/free-photo/couple-watching-tv-their-room-vacation_23-2149369732.jpg" }
]}
/>
</div>
</main>
<div id="footer" data-section="footer">
<FooterBaseCard logoText="RSDdison Hotel" columns={[{ title: "Navigation", items: [{ label: "Home", href: "/" }, { label: "Rooms", href: "/rooms" }] }, { title: "Experience", items: [{ label: "Gallery", href: "/gallery" }, { label: "Contact", href: "/contact" }] }]} />
</div>
<ThemeProvider defaultButtonVariant="text-stagger" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<main>Rooms content...</main>
</ThemeProvider>
);
}