import { Header } from "@/components/header"; import { Footer } from "@/components/footer"; import { ProductCard } from "@/components/product-card"; export default function WomenPage() { // Mock women's products data const womenProducts = [ { id: "9", name: "Floral Summer Dress", price: 129, originalPrice: 169, image: "/api/placeholder/400/500", images: ["/api/placeholder/400/500", "/api/placeholder/400/500"], rating: 4.8, reviewCount: 324, isNew: true, isSale: true, category: "Dresses", colors: ["#FFB6C1", "#FFFFFF", "#98FB98"], sizes: ["XS", "S", "M", "L", "XL"], }, { id: "10", name: "Silk Blouse", price: 89, originalPrice: 119, image: "/api/placeholder/400/500", rating: 4.6, reviewCount: 198, isSale: true, category: "Tops", colors: ["#FFFFFF", "#000000", "#FFB6C1"], sizes: ["XS", "S", "M", "L"], }, { id: "11", name: "High-Waist Jeans", price: 109, image: "/api/placeholder/400/500", rating: 4.7, reviewCount: 456, isNew: true, category: "Jeans", colors: ["#4169E1", "#000000", "#FFFFFF"], sizes: ["24", "26", "28", "30", "32"], }, { id: "12", name: "Cashmere Sweater", price: 199, originalPrice: 249, image: "/api/placeholder/400/500", rating: 4.9, reviewCount: 167, isSale: true, category: "Sweaters", colors: ["#F5F5DC", "#FFB6C1", "#6B7280"], sizes: ["XS", "S", "M", "L", "XL"], }, { id: "13", name: "Leather Handbag", price: 249, image: "/api/placeholder/400/500", rating: 4.5, reviewCount: 89, category: "Accessories", colors: ["#000000", "#8B4513", "#FFFFFF"], sizes: ["One Size"], }, { id: "14", name: "Midi Skirt", price: 79, originalPrice: 99, image: "/api/placeholder/400/500", rating: 4.4, reviewCount: 234, isSale: true, category: "Skirts", colors: ["#000000", "#FFB6C1", "#6B7280"], sizes: ["XS", "S", "M", "L", "XL"], }, { id: "15", name: "Trench Coat", price: 299, image: "/api/placeholder/400/500", rating: 4.8, reviewCount: 156, isNew: true, category: "Outerwear", colors: ["#F5F5DC", "#000000", "#8B4513"], sizes: ["XS", "S", "M", "L", "XL"], }, { id: "16", name: "Ankle Boots", price: 179, originalPrice: 219, image: "/api/placeholder/400/500", rating: 4.6, reviewCount: 278, isSale: true, category: "Shoes", colors: ["#000000", "#8B4513", "#6B7280"], sizes: ["5", "6", "7", "8", "9", "10"], }, ]; return ( <>
{/* Hero Section */}

Women's Collection

Embrace your style with our curated women's fashion collection featuring elegant and contemporary pieces

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