diff --git a/src/app/products/page.tsx b/src/app/products/page.tsx new file mode 100644 index 0000000..56cb9e1 --- /dev/null +++ b/src/app/products/page.tsx @@ -0,0 +1,130 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; +import FooterMedia from '@/components/sections/footer/FooterMedia'; + +export default function ProductsPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +}