import { Header } from "@/components/header"; import { Footer } from "@/components/footer"; import { ProductCard } from "@/components/product-card"; export default function UnisexPage() { // Mock unisex products data const unisexProducts = [ { id: "17", name: "Organic Cotton Hoodie", price: 89, originalPrice: 119, image: "/api/placeholder/400/500", images: ["/api/placeholder/400/500", "/api/placeholder/400/500"], rating: 4.7, reviewCount: 342, isNew: true, isSale: true, category: "Hoodies", colors: ["#000000", "#FFFFFF", "#6B7280", "#059669"], sizes: ["XS", "S", "M", "L", "XL", "XXL"], }, { id: "18", name: "Minimalist T-Shirt", price: 39, originalPrice: 49, image: "/api/placeholder/400/500", rating: 4.5, reviewCount: 567, isSale: true, category: "T-Shirts", colors: ["#FFFFFF", "#000000", "#6B7280", "#1E40AF"], sizes: ["XS", "S", "M", "L", "XL", "XXL"], }, { id: "19", name: "Relaxed Fit Jeans", price: 119, image: "/api/placeholder/400/500", rating: 4.6, reviewCount: 234, isNew: true, category: "Jeans", colors: ["#4169E1", "#000000", "#6B7280"], sizes: ["26", "28", "30", "32", "34", "36"], }, { id: "20", name: "Oversized Sweatshirt", price: 79, originalPrice: 99, image: "/api/placeholder/400/500", rating: 4.8, reviewCount: 189, isSale: true, category: "Sweatshirts", colors: ["#F5F5DC", "#000000", "#6B7280", "#059669"], sizes: ["XS", "S", "M", "L", "XL", "XXL"], }, { id: "21", name: "Canvas Backpack", price: 89, image: "/api/placeholder/400/500", rating: 4.4, reviewCount: 156, category: "Accessories", colors: ["#000000", "#8B4513", "#6B7280", "#FFFFFF"], sizes: ["One Size"], }, { id: "22", name: "Cargo Joggers", price: 99, originalPrice: 129, image: "/api/placeholder/400/500", rating: 4.3, reviewCount: 278, isSale: true, category: "Pants", colors: ["#000000", "#6B7280", "#059669", "#8B4513"], sizes: ["XS", "S", "M", "L", "XL", "XXL"], }, { id: "23", name: "Bomber Jacket", price: 159, image: "/api/placeholder/400/500", rating: 4.9, reviewCount: 123, isNew: true, category: "Outerwear", colors: ["#000000", "#1E40AF", "#6B7280", "#8B4513"], sizes: ["XS", "S", "M", "L", "XL", "XXL"], }, { id: "24", name: "Classic Sneakers", price: 129, originalPrice: 159, image: "/api/placeholder/400/500", rating: 4.6, reviewCount: 445, isSale: true, category: "Shoes", colors: ["#FFFFFF", "#000000", "#6B7280"], sizes: ["36", "37", "38", "39", "40", "41", "42", "43", "44"], }, ]; return ( <>
{/* Hero Section */}

Unisex Collection

Gender-neutral fashion for everyone. Discover versatile pieces designed for all body types and styles

{/* Filter Section */}
Showing {unisexProducts.length} products
{/* Products Grid */}
{unisexProducts.map((product) => ( ))}
{/* Load More Section */}