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 ( + + + +
+ +
+ + + +
+ +
+ + +
+ ); +}