diff --git a/src/app/products/page.tsx b/src/app/products/page.tsx new file mode 100644 index 0000000..e81dea9 --- /dev/null +++ b/src/app/products/page.tsx @@ -0,0 +1,59 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import FooterSimple from '@/components/sections/footer/FooterSimple'; +import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; + +export default function ProductsPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +} \ No newline at end of file