import { Header } from "@/components/header"; import { HeroSection } from "@/components/hero-section"; import { ProductCard } from "@/components/product-card"; import { Footer } from "@/components/footer"; export default function Home() { // Sample product data for demonstration const featuredProducts = [ { id: "1", name: "Premium Cotton T-Shirt", price: 29.99, originalPrice: 39.99, image: "/api/placeholder/400/500", rating: 4.8, reviewCount: 124, isNew: true, isSale: true, category: "Men's Clothing", colors: ["#000000", "#FFFFFF", "#808080", "#000080"], sizes: ["S", "M", "L", "XL"], }, { id: "2", name: "Elegant Summer Dress", price: 89.99, originalPrice: 119.99, image: "/api/placeholder/400/500", rating: 4.9, reviewCount: 89, isSale: true, category: "Women's Clothing", colors: ["#FF69B4", "#000000", "#800080"], sizes: ["XS", "S", "M", "L"], }, { id: "3", name: "Classic Denim Jacket", price: 79.99, image: "/api/placeholder/400/500", rating: 4.7, reviewCount: 156, isNew: true, category: "Outerwear", colors: ["#4169E1", "#000000", "#708090"], sizes: ["S", "M", "L", "XL", "XXL"], }, { id: "4", name: "Comfortable Sneakers", price: 99.99, originalPrice: 129.99, image: "/api/placeholder/400/500", rating: 4.6, reviewCount: 203, isSale: true, category: "Footwear", colors: ["#FFFFFF", "#000000", "#FF0000"], sizes: ["7", "8", "9", "10", "11", "12"], }, { id: "5", name: "Cozy Winter Sweater", price: 69.99, image: "/api/placeholder/400/500", rating: 4.8, reviewCount: 78, isNew: true, category: "Knitwear", colors: ["#8B4513", "#000000", "#008000", "#800080"], sizes: ["S", "M", "L", "XL"], }, { id: "6", name: "Stylish Crossbody Bag", price: 45.99, originalPrice: 59.99, image: "/api/placeholder/400/500", rating: 4.5, reviewCount: 92, isSale: true, category: "Accessories", colors: ["#000000", "#8B4513", "#800080"], sizes: ["One Size"], }, ]; return (
{/* Featured Products Section */}

Featured Products

Discover our handpicked selection of trending items that our customers love most.

{featuredProducts.map((product) => ( ))}
{/* Categories Section */}

Shop by Category

Explore our diverse range of fashion categories

{[ { name: "Women", image: "/api/placeholder/600/400", count: "2,345+ items" }, { name: "Men", image: "/api/placeholder/600/400", count: "1,892+ items" }, { name: "Kids", image: "/api/placeholder/600/400", count: "756+ items" }, ].map((category) => (

{category.name}

{category.count}

))}
); }