Add src/app/gallery/page.tsx

This commit is contained in:
2026-04-08 21:49:45 +00:00
parent d4d219a17c
commit ae085c387d

24
src/app/gallery/page.tsx Normal file
View File

@@ -0,0 +1,24 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import FooterBase from '@/components/sections/footer/FooterBase';
import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery';
export default function GalleryPage() {
return (
<ThemeProvider>
<ReactLenis root>
<NavbarLayoutFloatingInline navItems={[{name: "Home", id: "/"}, {name: "About", id: "/about"}, {name: "Amenities", id: "/amenities"}, {name: "Gallery", id: "/gallery"}, {name: "Contact", id: "/contact"}]} brandName="RISE" />
<HeroBillboardGallery
title="Visual Elegance"
description="Take a look into our world."
background={{ variant: "plain" }}
mediaItems={[{ imageSrc: "" }, { imageSrc: "" }, { imageSrc: "" }]}
/>
<FooterBase logoText="RISE" columns={[]} />
</ReactLenis>
</ThemeProvider>
);
}