import { Container } from "@/components/container"; import { Heading } from "@/components/heading"; import { Subheading } from "@/components/subheading"; import { Button } from "@/components/ui/button"; import { Badge } from "@/components/badge"; import Image from "next/image"; const products = [ { name: "Hand-Woven Silk Scarf", seller: "Amina K.", price: "$45", category: "Fashion", image: "https://images.unsplash.com/photo-1584030373081-f37b7bb4cb8e?q=80&w=800&auto=format&fit=crop", }, { name: "Organic Lavender Soap", seller: "Sarah J.", price: "$12", category: "Wellness", image: "https://images.unsplash.com/photo-1600857062241-98e5dba7f214?q=80&w=800&auto=format&fit=crop", }, { name: "Ceramic Coffee Mug", seller: "Elena R.", price: "$28", category: "Home Decor", image: "https://images.unsplash.com/photo-1514228742587-6b1558fcca3d?q=80&w=800&auto=format&fit=crop", }, { name: "Embroidered Wall Art", seller: "Priya M.", price: "$65", category: "Art", image: "https://images.unsplash.com/photo-1611486212335-132bb537d4e6?q=80&w=800&auto=format&fit=crop", }, ]; export function ProductGrid() { return (
Featured Creations Handpicked treasures from our verified women artists and housewives.
{products.map((product, index) => (
{product.name}
{product.category}

{product.name}

by {product.seller}

{product.price}
))}
); }