diff --git a/src/app/catalog/page.tsx b/src/app/catalog/page.tsx new file mode 100644 index 0000000..e5ab0e1 --- /dev/null +++ b/src/app/catalog/page.tsx @@ -0,0 +1,43 @@ +"use client"; + +import ReactLenis from "lenis/react"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; +import ProductCatalog from "@/components/ecommerce/productCatalog/ProductCatalog"; +import FooterBase from "@/components/sections/footer/FooterBase"; + +export default function CatalogPage() { + return ( + + + + + + + + ); +}