diff --git a/src/app/gallery/page.tsx b/src/app/gallery/page.tsx new file mode 100644 index 0000000..6c2664d --- /dev/null +++ b/src/app/gallery/page.tsx @@ -0,0 +1,173 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import ContactCTA from '@/components/sections/contact/ContactCTA'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; +import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery'; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import ProductCardOne from '@/components/sections/product/ProductCardOne'; + +export default function GalleryPage() { + return ( + + + + +
+ +
+ + + +
+ +
+ + +
+
+ ); +} \ No newline at end of file