diff --git a/src/app/products/page.tsx b/src/app/products/page.tsx new file mode 100644 index 0000000..c44756a --- /dev/null +++ b/src/app/products/page.tsx @@ -0,0 +1,143 @@ +"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 ProductCardFour from '@/components/sections/product/ProductCardFour'; +import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel'; + +export default function ProductsPage() { + return ( + + + + +
+ +
+ +
+ +
+ + +
+
+ ); +} \ No newline at end of file