From 3bfb5a4f3df9104990676a0c0dc0bcc924e36e3f Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 10 Jun 2026 06:38:44 +0000 Subject: [PATCH] Add src/app/products/page.tsx --- src/app/products/page.tsx | 143 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 143 insertions(+) create mode 100644 src/app/products/page.tsx 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