From a89c3848e58655e68b5234c56176dc1fd70cf7a8 Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Fri, 16 Jan 2026 16:19:03 +0000 Subject: [PATCH] Update components/product-grid.tsx --- components/product-grid.tsx | 84 +++++++++++++++++++++++++++++++++++++ 1 file changed, 84 insertions(+) create mode 100644 components/product-grid.tsx diff --git a/components/product-grid.tsx b/components/product-grid.tsx new file mode 100644 index 0000000..810dbae --- /dev/null +++ b/components/product-grid.tsx @@ -0,0 +1,84 @@ +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} + +
+
+ ))} +
+
+
+ ); +}