diff --git a/src/app/page.tsx b/src/app/page.tsx index ea326c1..5a35df5 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,6 +10,7 @@ import TestimonialCardFifteen from '@/components/sections/testimonial/Testimonia import ContactSplit from '@/components/sections/contact/ContactSplit'; import FooterCard from '@/components/sections/footer/FooterCard'; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ProductCatalog from '@/components/ecommerce/productCatalog/ProductCatalog'; export default function LandingPage() { return ( @@ -161,6 +162,66 @@ export default function LandingPage() { /> + +
+ {} + }, + { + id: "2", + name: "Custom Tennis Shoes", + price: 189.99, + imageSrc: "https://img.b2bpic.net/free-photo/futuristic-moon-background_23-2150930890.jpg", + imageAlt: "Custom Tennis Shoes", + rating: 4.9, + reviewCount: 89, + category: "Footwear", + onProductClick: () => {} + }, + { + id: "3", + name: "Performance Tennis Apparel", + price: 129.99, + imageSrc: "https://img.b2bpic.net/free-photo/futuristic-city-architecture_23-2151918947.jpg", + imageAlt: "Performance Tennis Apparel", + rating: 4.7, + reviewCount: 156, + category: "Apparel", + onProductClick: () => {} + }, + { + id: "4", + name: "Professional Tennis Bag", + price: 159.99, + imageSrc: "https://img.b2bpic.net/free-photo/futuristic-moon-background_23-2150930734.jpg", + imageAlt: "Professional Tennis Bag", + rating: 4.6, + reviewCount: 72, + category: "Accessories", + onProductClick: () => {} + } + ]} + searchPlaceholder="Search custom tennis gear..." + emptyMessage="No tennis products available" + className="w-full" + gridClassName="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6" + cardClassName="bg-white rounded-lg shadow-md hover:shadow-lg transition-shadow" + imageClassName="w-full h-64 object-cover rounded-t-lg" + searchClassName="mb-8" + toolbarClassName="flex flex-col gap-4 mb-8" + /> +