From e2c7dd28da680bdbeba60bafc36a5b42cbb7e5b8 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 8 Jun 2026 16:13:10 +0000 Subject: [PATCH] Add src/app/products/page.tsx --- src/app/products/page.tsx | 96 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 96 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..c63bfa6 --- /dev/null +++ b/src/app/products/page.tsx @@ -0,0 +1,96 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import FooterCard from '@/components/sections/footer/FooterCard'; +import ProductCardThree from '@/components/sections/product/ProductCardThree'; +import { Facebook, Instagram, Video } from "lucide-react"; + +export default function ProductsPage() { + return ( + + + + +
+ window.location.href = "/products/product-1" + }, + { + id: "p-supplement-performance", name: "Performance Joint Supplement", price: "$149.00", imageSrc: "http://img.b2bpic.net/free-photo/top-view-bowl-with-sand-spoon_23-2148724110.jpg", imageAlt: "Performance Joint Supplement", onProductClick: () => window.location.href = "/products/product-2" + }, + { + id: "p-bridle-anatomical", name: "Anatomical Comfort Bridle", price: "$299.99", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-standing-with-horse_1157-23376.jpg", imageAlt: "Anatomical Comfort Bridle", onProductClick: () => window.location.href = "/products/product-3" + }, + ]} + title="Our Premium Equine Product Line" + description="Discover GFFTC's specialized products, each designed with advanced technology and expert craftsmanship to ensure peak performance and well-being for your horse." + /> +
+ + +
+
+ ); +}