diff --git a/src/app/product-catalog/page.tsx b/src/app/product-catalog/page.tsx new file mode 100644 index 0000000..f2e024e --- /dev/null +++ b/src/app/product-catalog/page.tsx @@ -0,0 +1,162 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; +import FooterMedia from '@/components/sections/footer/FooterMedia'; + +const productData = [ + { + id: "p1", brand: "Classic Tailors", name: "Charcoal Business Suit", price: "$799", rating: 4.5, + reviewCount: "120", imageSrc: "https://img.b2bpic.net/free-photo/men-s-suit-hanger_107420-101414.jpg", imageAlt: "Charcoal Business Suit"}, + { + id: "p2", brand: "Modern Fits", name: "Navy Slim Fit Tuxedo", price: "$1200", rating: 4.8, + reviewCount: "85", imageSrc: "https://img.b2bpic.net/free-photo/stylish-man-in-suit_158595-3561.jpg", imageAlt: "Navy Slim Fit Tuxedo"}, + { + id: "p3", brand: "Elegant Wear", name: "Grey Plaid Formal Suit", price: "$899", rating: 4.2, + reviewCount: "95", imageSrc: "https://img.b2bpic.net/free-photo/black-classic-suit-blue-background_23-2147772659.jpg", imageAlt: "Grey Plaid Formal Suit"}, + { + id: "p4", brand: "Gentleman's Choice", name: "Brown Tweed Casual Blazer", price: "$450", rating: 4.0, + reviewCount: "60", imageSrc: "https://img.b2bpic.net/free-photo/business-gentleman-wearing-suit_158595-4560.jpg", imageAlt: "Brown Tweed Casual Blazer"}, + { + id: "p5", brand: "Trendsetter", name: "Light Blue Summer Suit", price: "$720", rating: 4.3, + reviewCount: "110", imageSrc: "https://img.b2bpic.net/free-photo/man-fitting-suit-store_107420-101416.jpg", imageAlt: "Light Blue Summer Suit"}, + { + id: "p6", brand: "Exclusive Tailoring", name: "Black Tie Evening Suit", price: "$1500", rating: 4.9, + reviewCount: "75", imageSrc: "https://img.b2bpic.net/free-photo/fashion-men-suits_1203-9121.jpg", imageAlt: "Black Tie Evening Suit"} +]; + +// Placeholder for client-side filtering component logic +function ProductFilters() { + return ( +
+

Filter Products

+
+

Size

+
+ {['XS', 'S', 'M', 'L', 'XL', 'XXL'].map(size => ( + + ))} +
+
+
+

Color

+
+ {['Blue', 'Black', 'Grey', 'Brown', 'Navy'].map(color => ( + + ))} +
+
+
+

Price Range

+ +
+ $0 + $2000+ +
+
+ +
+ ); +} + +export default function ProductCatalogPage() { + return ( + + + + +
+
+

+ Our Exquisite Suit Collections +

+
+ +
+ +
+
+
+
+ + +
+
+ ); +}