diff --git a/src/app/for/page.tsx b/src/app/for/page.tsx new file mode 100644 index 0000000..ecf455e --- /dev/null +++ b/src/app/for/page.tsx @@ -0,0 +1,81 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ProductCatalog from "@/components/ecommerce/productCatalog/ProductCatalog"; + +export default function ForPage() { + return ( + +
+
+ {} + }, + { + 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" + /> +
+
+
+ ); +} diff --git a/src/app/page.tsx b/src/app/page.tsx index 5a35df5..1e606a3 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,7 +10,6 @@ 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 ( @@ -163,65 +162,6 @@ 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" - /> -