Add src/app/rooms/page.tsx

This commit is contained in:
2026-04-08 21:49:46 +00:00
parent c4b15950d4
commit fe709ce1ed

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

@@ -0,0 +1,43 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import ProductCardThree from '@/components/sections/product/ProductCardThree';
import FooterBase from '@/components/sections/footer/FooterBase';
export default function RoomsPage() {
return (
<ThemeProvider>
<ReactLenis root>
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "Accommodations", id: "/rooms" },
{ name: "Contact", id: "/#contact" },
]}
brandName="RISE"
button={{ text: "Book Now", href: "/#contact" }}
/>
<div className="pt-32 pb-20">
<ProductCardThree
title="Our Accommodations"
description="Experience world-class luxury and comfort in our signature rooms and suites."
gridVariant="three-columns-all-equal-width"
animationType="slide-up"
textboxLayout="default"
products={[
{ id: "r1", name: "Deluxe Suite", price: "$450/night", imageSrc: "https://images.unsplash.com/photo-1590490360182-c33d57733027?q=80&w=800" },
{ id: "r2", name: "Marina View Room", price: "$600/night", imageSrc: "https://images.unsplash.com/photo-1582719478250-c89cae4dc85b?q=80&w=800" },
{ id: "r3", name: "Presidential Suite", price: "$1200/night", imageSrc: "https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?q=80&w=800" }
]}
/>
</div>
<FooterBase
columns={[{ title: "Navigation", items: [{ label: "Home", href: "/" }, { label: "Contact", href: "/#contact" }] }]}
logoText="RISE"
/>
</ReactLenis>
</ThemeProvider>
);
}