From ae085c387dabda90e0bc209bd3e522393479c10b Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 8 Apr 2026 21:49:45 +0000 Subject: [PATCH] Add src/app/gallery/page.tsx --- src/app/gallery/page.tsx | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/app/gallery/page.tsx diff --git a/src/app/gallery/page.tsx b/src/app/gallery/page.tsx new file mode 100644 index 0000000..76ec97d --- /dev/null +++ b/src/app/gallery/page.tsx @@ -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 ( + + + + + + + + ); +} \ No newline at end of file