From c2d3c686bc086ced4bdccb1df9fb294c975e05fb Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 15:12:04 +0000 Subject: [PATCH] Add src/app/gallery/page.tsx --- src/app/gallery/page.tsx | 138 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 138 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..0b8f42a --- /dev/null +++ b/src/app/gallery/page.tsx @@ -0,0 +1,138 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import HeroBillboardCarousel from "@/components/sections/hero/HeroBillboardCarousel"; +import TeamCardSix from "@/components/sections/team/TeamCardSix"; +import ContactCTA from "@/components/sections/contact/ContactCTA"; +import FooterSimple from "@/components/sections/footer/FooterSimple"; +import { Image, Heart } from "lucide-react"; + +export default function GalleryPage() { + return ( + + + +
+ +
+ + + +
+ +
+ + +
+ ); +}